List all events
GET/calendar/{connection_id}/event
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
calendar_idstring
The calendar ID to filter by (reference to CalendarCalendar)
start_gtestring
The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
end_ltstring
The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
expandboolean
Whether to flatten grouped or recurring items into individual entries.
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
CalendarEventarray
idstring
created_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
calendar_idstring
(reference to CalendarCalendar)
subjectstring
start_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
end_atstring
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
is_all_dayboolean
timezonestring
notesstring
locationstring
is_freeboolean
is_privateboolean
status enum
Valid values:
"CANCELED"
"CONFIRMED"
"TENTATIVE"
recurring_event_idstring
(reference to CalendarEvent)
web_urlstring
has_conferenceboolean
send_notificationsboolean
const options = {
method: 'GET',
url: 'https://api.unified.to/calendar/5de520f96e439b002043d8dc/event',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-06-12T19:00:36.351Z',
sort: 'updated_at',
order: 'asc',
query: '',
calendar_id: '',
start_gte: '',
end_lt: '',
expand: false,
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know