Skip to main content
GET
/
v4
/
calendar-connections
/
connections
/
{connectionId}
/
calendars
Get connection calendars
curl --request GET \
  --url https://api.example.com/v4/calendar-connections/connections/{connectionId}/calendars \
  --header 'x-meetergo-api-user-id: <api-key>'
{
  "calendars": [
    {
      "id": "cal-uuid",
      "name": "Work Calendar",
      "description": "Work events and meetings",
      "isPrimary": true,
      "canEdit": true,
      "selected": false
    }
  ],
  "connectionId": "conn-uuid",
  "provider": "google"
}

Authorizations

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

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

Path Parameters

connectionId
string
required

Unique identifier of the calendar connection

Example:

"conn-uuid"

Query Parameters

userId
string

User ID that owns the connection (admin only)

Example:

"user-uuid"

Response

200 - application/json

Connection calendars retrieved successfully

calendars
object[]
connectionId
string
Example:

"conn-uuid"

provider
string
Example:

"google"