Create meeting request
Meeting
Create Meeting
Create a meeting request with another user. The recipient receives email and push notifications to confirm or reject.
POST
Create meeting request
Overview
Create a meeting request with another user. The recipient receives an email notification and push notification (if using mobile app) to confirm or reject the meeting. Meetings are automatically set for 1 hour duration.Request Body
The ID of the user to request a meeting with (recipient/client).Example:
5The ID of the team this meeting belongs to.Example:
1The proposed date and time for the meeting. The time will be converted from the recipient’s timezone to UTC.Format: Any valid date-time string that can be parsedExample:
"2025-12-15 14:00:00", "2025-12-15T14:00:00"Optional meeting link (e.g., Zoom, Google Meet, Microsoft Teams URL).Example:
"https://zoom.us/j/1234567890"Response
The unique identifier of the meeting booking.
Unique booking reference number for the meeting.
The ID of the user the meeting is with (recipient).
The ID of the user who created the meeting request.
The ID of the team this meeting belongs to.
The timezone of the recipient user.
The meeting date and time in UTC.
Unix timestamp for the meeting start time.
Unix timestamp for the meeting end time (1 hour after start).
The timestamp when the meeting was created (ISO 8601 format).
The timestamp when the meeting was last updated (ISO 8601 format).
Example Request
Example Request (JavaScript)
Example Response
Example Request - Without Meeting Link
Error Responses
Automatic Notifications
When a meeting is created, the recipient receives:Email Notification
- Subject: “You have received new meeting request!”
- Content: Includes requester name, date/time in UTC, and link to view pending meetings
- Action Link: Takes user to pending meetings page
- Meeting Link: If provided, included in the email
Push Notification (Mobile)
- Title: “MEETING ALERT”
- Message: “[Your Name] requested a meeting with you. Click to Confirm or Reject.”
- Action: Opens meeting screen in mobile app
- Type:
meeting-created
Meeting Details
Duration
- Default duration: 1 hour (3600 seconds)
- Automatically calculated:
end_time = start_time + 3600
Timezone Handling
- Date is provided in any format
- Converted to recipient’s timezone
- Then converted to UTC for storage
- If recipient’s timezone is invalid, defaults to UTC
Booking Number
- Automatically generated unique identifier
- Format: Custom booking ID (implementation-specific)
- Used for reference and tracking
Meeting Workflow
Status Flow
- Created: Meeting request is created (pending)
- Pending: Waiting for recipient confirmation
- Confirmed: Recipient accepted the meeting
- Rejected: Recipient declined the meeting
- Completed: Meeting has taken place
Notes
- Timezone conversion: Meeting times are automatically converted from recipient’s timezone to UTC
- 1-hour duration: All meetings are automatically set for 1 hour
- Booking number: A unique booking reference is generated for each meeting
- Email notification: Recipient receives email with meeting details and action link
- Push notification: If recipient has mobile app, they receive real-time push notification
- Meeting link: Optional meeting link (Zoom, Google Meet, etc.) can be included
- Pending status: Meetings are created in pending status awaiting recipient action
- Action URL: Email includes link to
/meetings?tab=pending-meeting - Invalid timezone: If recipient’s timezone is invalid, defaults to UTC
Best Practices
- Always provide a meeting link for virtual meetings
- Choose appropriate times considering recipient’s timezone
- Include meeting purpose in follow-up communication
- Send calendar invites separately if needed
- Confirm meeting details before the scheduled time
- Allow sufficient buffer time between meetings
Use Cases
- One-on-one meetings: Schedule meetings with team members
- Client consultations: Book time with clients
- Review sessions: Schedule performance reviews or project reviews
- Training sessions: Set up training or onboarding meetings
- Quick calls: Schedule brief sync-up calls
Related Endpoints
- Get Pending Meetings - List pending meeting requests
- Confirm Meeting - Accept a meeting request
- Reject Meeting - Decline a meeting request
- Get Meeting Details - Retrieve meeting information
- Cancel Meeting - Cancel a scheduled meeting
- List User Meetings - Get all meetings for a user
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The ID of the user to request a meeting with
Example:
5
The ID of the team this meeting belongs to
Example:
1
The proposed date and time for the meeting
Example:
"2025-12-15 14:00:00"
Optional meeting link (Zoom, Google Meet, etc.)
Example:
"https://zoom.us/j/1234567890"
Response
Meeting created successfully