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

  • default application/json

    Get user

    Hide response attributes Show response attributes object
    • start string(date-time)
    • allDay boolean
    • url string
    • id integer
    • target string
    • className string
    • end string(date-time)
    • title string
    • description string
GET /api/calendar/list
curl \
 --request GET 'http://api.example.com/api/calendar/list' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
[
  {
    "start": "2025-05-04T09:42:00Z",
    "allDay": true,
    "url": "string",
    "id": 42,
    "target": "string",
    "className": "string",
    "end": "2025-05-04T09:42:00Z",
    "title": "string",
    "description": "string"
  }
]