List Calendar Events

GET /api/calendar/list

Returns a list of calendar events specific to the currently authenticated user

Query parameters

  • start string

    Start date for returned events

  • end string

    End date for returned events

Responses

GET /api/calendar/list
curl \
 -X GET http://api.example.com/api/calendar/list \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
[
  {
    "start": "2023-05-04T09:42:00+00:00",
    "allDay": true,
    "url": "string",
    "id": 42,
    "target": "string",
    "className": "string",
    "end": "2023-05-04T09:42:00+00:00",
    "title": "string",
    "description": "string"
  }
]