POST {{baseUrl}}/calendars/:calId/events/quickAdd?text=<string>&sendUpdates=none
Creates an event based on a simple text string. Scopes: Rate Limit Label: calendar:write
,calendar:write:admin
HEAVY
Body
PARAM
Key | Datatype | Required | Description |
text
|
string | (Required) The text that describes the event to be created. | |
sendUpdates
|
string | The guests who should receive notifications about the creation of the new event. |
HEADERS
Key | Datatype | Required | Description |
Content-Type
|
string | ||
Accept
|
string |
RESPONSES
status OK
{
"start": {
"date": "<date>",
"dateTime": "<dateTime>",
"timeZone": "<string>"
},
"end": {
"date": "<date>",
"dateTime": "<dateTime>",
"timeZone": "<string>"
},
"attendees": [
{
"email": "<email>",
"additionalGuests": "<integer>",
"displayName": "<string>",
"optional": "<boolean>",
"resource": "<boolean>",
"responseStatus": "declined"
},
{
"email": "<email>",
"additionalGuests": "<integer>",
"displayName": "<string>",
"optional": "<boolean>",
"resource": "<boolean>",
"responseStatus": "needsAction"
}
],
"colorId": "<string>",
"description": "<string>",
"guestsCanInviteO Curl curl -X POST 'https://api.zoom.us/v2/calendars/:calId/events/quickAdd?text=<string>&sendUpdates=none?text=<string>&sendUpdates=none' -H 'Content-Type: undefined' -H 'Accept: application/json' ENDPOINTS |