Logo
Zoom Public API Documentation

Move the specified event from a calendar to another specified calendar

POST {{baseUrl}}/calendars/:calId/events/:eventId/move?destination=<string>&sendUpdates=none

Moves an event to another calendar, such as changing an event's organizer.

Scopes: calendar:write,calendar:write:admin

Rate Limit Label: HEAVY

 

Body PARAM

Key Datatype Required Description 
destination
string (Required) The calendar identifier of the target calendar where the event is to be moved.
sendUpdates
string Whether to send notifications about the creation of the new event. Note that some emails might still be sent.



HEADERS

Key Datatype Required Description 
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": "needsAction" }, { "email": "<email>", "additionalGuests": "<integer>", "displayName": "<string>", "optional": "<boolean>", "resource": "<boolean>", "responseStatus": "tentative" } ], "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": "confirmed", "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/:eventId/move?destination=<string>&sendUpdates=none?destination=<string>&sendUpdates=none' -H 'Accept: application/json'

ENDPOINTS