Skip to main content
GET
/
api
/
v1
/
calendars
/
{calendarId}
Get a calendar
curl --request GET \
  --url https://prod.featherhq.com/api/v1/calendars/{calendarId} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "organizationId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "userId": "<string>",
  "archived": true,
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

calendarId
string
required

Response

Calendar details

id
string
required
organizationId
string
required
name
string
required
description
string | null
required
userId
string | null
required
archived
boolean
required
createdAt
string
required
updatedAt
string
required