Skip to main content
GET
/
v4
/
calendar-connections
/
connections
List calendar connections
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": "[email protected]",
      "isPrimary": true,
      "isConnected": true,
      "selectedCalendars": [
        "primary",
        "work-calendar"
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 3
}

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Query Parameters

userId
string

User ID to get connections for (admin only)

Example:

"user-uuid"

Response

200 - application/json

Calendar connections retrieved successfully

connections
object[]
total
number
Example:

3