Logo
Zoom Public API Documentation

Quick add an event to the specified calendar

POST {{baseUrl}}/calendars/:calId/events/quickAdd?text=<string>&sendUpdates=none

Creates an event based on a simple text string.

Scopes: calendar:write,calendar:write:admin

Rate Limit Label: 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>", "guestsCanInviteOthers": "<boolean>", "guestsCanModify": "<boolean>", "guestsCanSeeOtherGuests": "<boolean>", "location": "<string>", "recurrence": [ "<string>", "<string>" ], "reminders": { "useDefault": "<boolean>", "overrides": [ { "method": "popup", "minutes": "<integer>" }, { "method": "popup", "minutes": "<integer>" } ] }, "status": "cancelled", "summary": "<string>", "transparency": "opaque", "visibility": "private", "id": "<string>", "created": "<string>", "creator": { "email": "<string>" }, "organizer": { "email": "<string>" }, "kind": "<string>", "updated": "<string>" }



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