Skip to main content
GET
/
api
/
v1
/
calendars
/
{calendarId}
/
event-types
/
{eventTypeId}
Get an event type
curl --request GET \
  --url https://prod.featherhq.com/api/v1/calendars/{calendarId}/event-types/{eventTypeId} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "calendarId": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "duration": 123,
  "slotInterval": 123,
  "minimumBookingNotice": 123,
  "beforeEventBuffer": 123,
  "afterEventBuffer": 123,
  "periodType": "UNLIMITED",
  "periodDays": 123,
  "periodStartDate": "<string>",
  "periodEndDate": "<string>",
  "scheduleId": "<string>",
  "location": "<string>",
  "addGoogleMeet": true,
  "active": true,
  "archived": true,
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "metadata": null
}

Authorizations

X-API-Key
string
header
required

Path Parameters

calendarId
string
required
eventTypeId
string
required

Response

Event type details

id
string
required
calendarId
string
required
name
string
required
slug
string
required
description
string | null
required
duration
number
required
slotInterval
number | null
required
minimumBookingNotice
number
required
beforeEventBuffer
number
required
afterEventBuffer
number
required
periodType
enum<string>
required
Available options:
UNLIMITED,
ROLLING,
RANGE
periodDays
number | null
required
periodStartDate
string | null
required
periodEndDate
string | null
required
scheduleId
string | null
required
location
string | null
required
addGoogleMeet
boolean
required
active
boolean
required
archived
boolean
required
createdAt
string
required
updatedAt
string
required
metadata
unknown