Skip to main content
GET
/
events
Listing Event Types
curl --request GET \
  --url https://api.calendbook.com/events \
  --header 'Authorization: Bearer <token>'
[
  {
    "event_id": "<string>",
    "title": "<string>",
    "booking_type": "<string>",
    "color": "<string>",
    "description": "<string>",
    "duration_minutes": 123,
    "enabled": true,
    "is_team": true,
    "location": {
      "type": "<string>",
      "value": "<string>"
    },
    "buffer_after_minutes": 123,
    "buffer_before_minutes": 123,
    "is_secret": true,
    "redirect_url": "<string>",
    "url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

List of available event types

event_id
string
title
string
booking_type
string
color
string
description
string
duration_minutes
integer
enabled
boolean
is_team
boolean
location
object
buffer_after_minutes
integer
buffer_before_minutes
integer
is_secret
boolean
redirect_url
string | null
url
string