Get all calendar connections for the authenticated user or a specific user (admin only). Returns connections from all providers (Google, Outlook, iCloud, CalDAV, etc.)
curl --request GET \
--url https://api.example.com/v4/calendar-connections/connections \
--header 'x-meetergo-api-user-id: <api-key>'{
"connections": [
{
"id": "conn-uuid",
"provider": "google",
"email": "user@gmail.com",
"isPrimary": true,
"isConnected": true,
"selectedCalendars": [
"primary",
"work-calendar"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"total": 3
}User ID to act as when using API Key authentication (required with API Key)
User ID to get connections for (admin only)
"user-uuid"
curl --request GET \
--url https://api.example.com/v4/calendar-connections/connections \
--header 'x-meetergo-api-user-id: <api-key>'{
"connections": [
{
"id": "conn-uuid",
"provider": "google",
"email": "user@gmail.com",
"isPrimary": true,
"isConnected": true,
"selectedCalendars": [
"primary",
"work-calendar"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"total": 3
}