Bulk Delete Events
Required plan: StarterDescription #
Delete events that you are managing from the user’s calendars in bulk.
URL format #
{data_center_url}/v1/events
Example Requests #
Delete all events from all calendars
DELETE /v1/events HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {ACCESS_TOKEN}
Content-Type: application/json; charset=utf-8
{
"delete_all": true
}
Delete all events from specific calendars
DELETE /v1/events HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {ACCESS_TOKEN}
Content-Type: application/json; charset=utf-8
{
"calendar_ids" : [ "cal_n23kjnwrw2_sakdnawerd3" ]
}
Example Response #
HTTP/1.1 202 Accepted
Request parameters #
data_center_url required
The URL for the data center you want to communicate with. Possible choices are:
api-au.cronofy.com
- π¦πΊ Australiaapi-ca.cronofy.com
- π¨π¦ Canadaapi-de.cronofy.com
- π©πͺ Germanyapi-sg.cronofy.com
- πΈπ¬ Singaporeapi-uk.cronofy.com
- π¬π§ United Kingdomapi.cronofy.com
- πΊπΈ United States
Find out more about Cronofy's data centers.
delete_all optional #
A Boolean
specifying whether all events you are managing for the user should be deleted. When specified must be true
.
calendar_ids optional #
An Array
specifying the calendars from which to delete all events you are managing for the user. When provided at least one calendar must be specified.
Response Errors #
Only one of delete_all
or calendar_ids
must be provided in the body, if both are set this is considered an error.