Getting Started
- Accounts
- Charging Sessions
- Charging Stations
- Drivers
- Estimations
- Fleets
- Invoices
- Payment Methods
- Reports
- Reservations
- Transactions
- Vehicles
- Vehicle Telemetries
- Webhook Endpoints
Reservations
Create a reservation
POST
/
reservations
Copy
curl --request POST \
--url https://api.chargeapi.co/v1/reservations
Copy
{
"id": null,
"object": null,
"cancellation_policy": {
"type": null,
"free_until_before": null
},
"charging_station": null,
"connector_type": null,
"created": null,
"currency": null,
"driver": null,
"location": {
"latitude": null,
"longitude": null,
"radius": null
},
"metadata": null,
"payment_method": null,
"reservation_fee": null,
"reserved_start": null,
"reserved_end": null,
"status": null,
"updated": null,
"vehicle": null
}
Response
200 - application/json
A newly created reservation.
Copy
curl --request POST \
--url https://api.chargeapi.co/v1/reservations
Copy
{
"id": null,
"object": null,
"cancellation_policy": {
"type": null,
"free_until_before": null
},
"charging_station": null,
"connector_type": null,
"created": null,
"currency": null,
"driver": null,
"location": {
"latitude": null,
"longitude": null,
"radius": null
},
"metadata": null,
"payment_method": null,
"reservation_fee": null,
"reserved_start": null,
"reserved_end": null,
"status": null,
"updated": null,
"vehicle": null
}
Assistant
Responses are generated using AI and may contain mistakes.