List reservations
Returns a paginated list of Reservation objects, sorted by creation date with the most recent reservations first. You can filter the results by status, driver, vehicle, or charging station.
Query Parameters
Maximum number of reservations to return (default 10).
1 <= x <= 100
Pagination cursor; returns reservations after this ID.
Pagination cursor; returns reservations before this ID.
Filter reservations by status.
pending
, confirmed
, completed
, cancelled
, failed
, expired
Filter reservations by driver ID.
Filter reservations by vehicle ID.
Filter reservations by charging station ID.
Specifies related objects to expand in each reservation (for example, expand[]=charging_station
).
Body
Response
A dictionary with a data property that contains an array of up to limit Reservation objects, starting after Reservation starting_after. Each entry in data is a separate Reservation object. If no additional reservations are available, the array is empty.
The response is of type object
.