Update a calendar event
PATCH /v2/agenda/calendar/events/{eventId}
Parameters
Path parameters
Request body
Content-Type: application/json
"GOOGLE", "OFFICE365"Example
{
"summary": "string",
"description": "string"
}
Responses
200 — Successful response
Content-Type: application/json
"EMAIL", "CALENDAR"Example
{
"data": {
"calendar_event": {
"providerId": "string",
"type": "EMAIL",
"subjectOrTitle": "string",
"dateTime": "2026-09-17T02:39:21.251Z",
"participants": [
{
"email": "string"
}
],
"email": "string"
}
}
}
400 — Request body failed validation.
Content-Type: application/json
401 — Missing or invalid API key.
Content-Type: application/json
403 — Valid key, insufficient permission.
Content-Type: application/json
404 — Resource does not exist.
Content-Type: application/json
409 — Request conflicts with the current state of the resource.
Content-Type: application/json
429 — Rate limit exceeded.
Content-Type: application/json
500 — Unexpected server error.
Content-Type: application/json
Code samples
curl https://api.prod.getdex.com/v2/agenda/calendar/events/string \
--request PATCH \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"summary": "string",
"description": "string"
}'
fetch('https://api.prod.getdex.com/v2/agenda/calendar/events/string', {
method: 'PATCH',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
summary: 'string',
description: 'string'
})
})
requests.patch(
"https://api.prod.getdex.com/v2/agenda/calendar/events/string",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"summary": "string",
"description": "string"
}
)
Get a calendar event
Retrieve a single calendar event by its provider event ID, including attendees, conferencing links, and recurrence flags. Reads from the primary connected calendar unless `account_email` selects anoth
Delete a calendar event
Delete an event from the connected calendar by its provider event ID. Deleting an event you organize cancels it for all attendees. Returns `{ data: { affected, ids } }`. `Idempotency-Key` is optional.

