Calendar
Get events
Retrieves all calendar events for an assistant, identified by a JWT token.
POST
/
get-events
Copy
Ask AI
[
{
"title": "Project Deadline",
"start": "2025-08-01T17:00:00Z",
"color": "#dc3545",
"allDay": false,
"alarm": true
},
{
"title": "Catalina Project Sync",
"start": "2025-08-05T10:00:00Z",
"color": "#007bff",
"allDay": false,
"alarm": true
}
]
Body
application/x-www-form-urlencoded
Response
200
application/json
A list of events.
The response is of type object[]
.
Copy
Ask AI
[
{
"title": "Project Deadline",
"start": "2025-08-01T17:00:00Z",
"color": "#dc3545",
"allDay": false,
"alarm": true
},
{
"title": "Catalina Project Sync",
"start": "2025-08-05T10:00:00Z",
"color": "#007bff",
"allDay": false,
"alarm": true
}
]
Assistant
Responses are generated using AI and may contain mistakes.