SnozeDevelopers
API referenceCalendar

List the caller's saved calendar views

Returns the calendar filter presets the calling user saved in this workspace, ordered by name. Requires `workspace:read`. Saved views are per user, so one member never sees another's.

GET
/v1/workspaces/{workspaceId}/calendar/views
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/workspaces/string/calendar/views"
{  "data": [    {      "id": "string",      "workspaceId": "string",      "name": "string",      "filters": {},      "isDefault": true,      "createdAt": "string",      "updatedAt": "string"    }  ]}