List Calendar Events
Returns a list of calendar events specific to the currently authenticated user
GET /api/calendar/list
curl \
-X GET http://api.example.com/api/calendar/list \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
[
{
"start": "2024-05-04T09:42:00+00:00",
"allDay": true,
"url": "string",
"id": 42,
"target": "string",
"className": "string",
"end": "2024-05-04T09:42:00+00:00",
"title": "string",
"description": "string"
}
]