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: Rate Limit Label: calendar:write
,calendar:write:admin
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>"
} |
ENDPOINTS