GET
/accounts/{accountId}/calendars GET /accounts/{accountId}/calendars
Parameters
accountId string Additional parameters
page string
page string limit string
limit string maxResults string
maxResults string pageToken string
pageToken string Returns
Paginated list of calendars available to the account.
curl -X GET "http://localhost:8080/accounts/{accountId}/calendars"
{
"calendars": [
{
"id": "cal_primary",
"summary": "Primary Calendar",
"description": "Default calendar for the account.",
"timeZone": "America/New_York",
"backgroundColor": "#2952a3",
"foregroundColor": "#ffffff",
"accessRole": "owner",
"primary": true,
"selected": true,
"provider": "google"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 1,
"totalPages": 1,
"hasNext": false,
"hasPrev": false
}
}