/events/today

Retrieve a list of events from any of your calendars, limited to events that start or end today.

Parameters

No parameters.

Example Request

curl -G --request GET \
  --url 'https://api.makerapi.com/v1/events/today' \
  --header 'Content-type: application/json' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Response Schema

ValueTypeDescription
countintegerA count of all the events returned
eventsarrayAn array of event objects

Example 200 Response

{
  "count": 0,
  "events": []
}

Example 401 Response

TODO: This should return JSON.

Unauthorized