List Google Calendars
List all available Google Calendars for the connected account.
GET
Headers
x-api-keystringrequiredAPI key used for authenticating requests to the API.
x-workspace-idstringrequiredWorkspace identifier for the API.
Query Parameters
pathwayIdstringrequiredThe call flow pathway ID with the Google Calendar connection.
Response Fields
calendarsarrayArray of available calendars.
idstringCalendar ID.
summarystringCalendar name/title.
primarybooleanWhether this is the primary calendar.
{
"calendars": [
{
"id": "primary",
"summary": "John Doe",
"primary": true
},
{
"id": "appointments@company.com",
"summary": "Appointments",
"primary": false
}
]
}