cURL
curl --request GET \ --url https://api.novacal.io/v1/events \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "start": "2023-11-07T05:31:56Z", "end": "2023-11-07T05:31:56Z", "canceled_at": "2023-11-07T05:31:56Z", "cancellation_reason": "<string>", "location": "<string>", "form_field_answers": { "name": "John Doe", "email": "john@example.com" }, "status": "<string>", "name": "<string>", "organizer": { "first_name": "<string>", "last_name": "<string>", "name": "<string>", "email": "jsmith@example.com", "username": "<string>", "timezone": "<string>", "time_format": 12, "start_of_week": 0, "avatar": "<string>" }, "hosts": [ { "first_name": "<string>", "last_name": "<string>", "name": "<string>", "email": "jsmith@example.com", "username": "<string>", "timezone": "<string>", "time_format": 12, "start_of_week": 0, "avatar": "<string>" } ], "booker": { "name": "<string>", "email": "jsmith@example.com", "timezone": "<string>", "time_format": 12 }, "guests": [ "jsmith@example.com" ] } ] }
List the Novacal events the authenticated user can access, including scheduling details, attendees, hosts, and current event status.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Events response
Indicates whether the request was successful
true
Show child attributes