List Cal.com Event Types
Endpoint used to list event types of a user on Cal.com.
Request Example
Section titled “Request Example”curl --request POST \ --url https://converflow.api.prod.toolzz.media/api/v1/calcom/event-types \ --header 'Authorization: Bearer TOKEN_HERE' \ --header 'Content-Type: application/json' \ --data '{ "apiKey": "string", "username": "string"}'Response Example
Section titled “Response Example”{ "eventTypes": [ { "id": number, "title": "string", "slug": "string", "length": number, "description": "string" } ]}Request description
Section titled “Request description”Access Token
Section titled “Access Token”| Parameter | Type | Description | Required |
|---|---|---|---|
Authorization | String | Access token (“Bearer” must be before the token) | Yes |
Body Parameters
Section titled “Body Parameters”| Parameter | Type | Description | Required |
|---|---|---|---|
apiKey | String | API key (Live Key) generated in the Cal.com dashboard for authentication. | Yes |
username | String | Unique user identifier (slug) on the Cal.com platform. | Yes |
Response description
Section titled “Response description”| Key | Type | Description |
|---|---|---|
eventTypes[] | Array | List of objects containing the available scheduling categories. |
id | Number | Unique identifier of the event type on the Cal.com platform. |
title | String | Friendly name of the event displayed to the person scheduling (e.g., “30 min Meeting”). |
slug | String | URL identifier used to generate the direct link for the event. |
length | Number | Total duration of the event in minutes. |
description | String | Explanatory text detailing the purpose of the meeting (can be empty). |
Security
Section titled “Security”To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request. Additionally, the API is protected by other security measures to safeguard user data.
To access your access token, follow these steps:
- Log in to the ToolzzAI platform
- Click on “Settings”
- Click on “Access Token”
- Copy the access token
