cURL
curl --request GET \ --url https://api.novacal.io/v1/event-types \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "id": 123, "name": "<string>", "slug": "<string>", "description": "<string>", "type": "one_on_one", "duration": 720, "max_group_size": 6, "hidden_from_profile": true, "color": "<string>", "redirect_enabled": true, "redirect_url": "<string>", "time_slot_interval": 62, "buffer_time_before_event": 60, "buffer_time_after_event": 60, "min_scheduling_notice": 21600, "min_scheduling_notice_type": "minutes", "booking_frequency_limits": [ { "period": "day", "limit": 21600 } ], "form_fields": [ { "identifier": "<string>", "label": "<string>", "type": "<string>", "placeholder": "<string>", "is_required": true, "options": [ "<string>" ] } ] } }
List the Novacal event types available to the authenticated user, including names, durations, visibility settings, and form fields.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Event types response
Indicates whether the request was successful
true
The response data. Can be an object, array, or null
Show child attributes