Scheduled Meetings
POST /meetings
| Summary | Schedule a Meeting Notetaker for a future meeting by providing a join URL, time (UTC), and a display name for the notetaker. | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| URL | /api/v1/meetings | ||||||||||||||||||||||||||||||||
| Request Headers |
|
||||||||||||||||||||||||||||||||
| Request Body |
Provide the meeting join URL, the meeting start time (UTC) broken into components, and the display name for the notetaker participant.
|
||||||||||||||||||||||||||||||||
| Response |
On success, 200 OK with an object containing the scheduled meeting identifier. Use this identifier with Get Scheduled Meeting Notetaker to retrieve full details. |
||||||||||||||||||||||||||||||||
| Error Responses |
|
Notes:
- Times must be specified in UTC via the discrete components shown above.
- Provide an HTTP/HTTPS join_url that the notetaker can join.
- The response includes a meeting identifier you can use to retrieve details.
Sample Request (JSON)
{
"join_url": "https://zoom.us/j/123456789?pwd=abc123",
"year": 2025,
"month": 1,
"day": 15,
"hour": 16,
"minute": 30,
"notetaker_display_name": "Rev Notetaker"
}
Sample Success Response (JSON)
{
"id": "507f1f77bcf86cd799439011"
}