cURL
curl --request GET \ --url https://api.novacal.io/v1/events/{id} \ --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>", "form_fields": [ { "identifier": "<string>", "label": "<string>", "type": "<string>", "placeholder": "<string>", "is_required": true, "options": [ "<string>" ] } ] } }
Returns a single event by ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of event
Event response
Indicates whether the request was successful
true
The response data. Can be an object, array, or null
Show child attributes