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

Authorizations

X-API-Key
string
header
required

Body

application/json
name
string
required
Required string length: 1 - 255
description
string
Maximum string length: 1000
userId
string

Response

Calendar created successfully

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