moovexDocs

Monthly calendar view

Returns reservations grouped by day for the requested month. Dates are unix seconds.

GET/reservations/calendar/monthly

Query Parameters

ParameterTypeRequiredDescription
searchstringNoSearch string
datenumberYesMonth anchor date (unix seconds)
passengersstring[]NoPassenger ids filter
caregiversstring[]NoCaregiver ids filter
profilesstring[]NoProfile ids filter

Example Response

{
  "records": [
    {
      "dayOfMonth": 15,
      "reservations": [
        {
          "numericId": 301,
          "name": "John Doe",
          "date": 1700000000
        },
        {
          "numericId": 302,
          "name": "Jane Smith",
          "date": 1700050000
        }
      ]
    }
  ]
}

On this page