POST api/customers/{customerId}/evchargingrequests
Create a new EV charging request for the specified customer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId |
Customer number/ID |
integer |
Required |
Body Parameters
The new EV charging request
EvChargingRequestResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CustomerId |
AssetId of EV charging point where charging in requested. |
integer |
None. |
| AssetId | integer |
None. |
|
| StartTime |
Start time in UTC. |
date |
None. |
| EndTime | date |
None. |
|
| ChargingDemand |
Charging demand i kWh. |
decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6c54496b-4126-41a6-8d2f-6e9a762fb66b",
"CustomerId": 2,
"AssetId": 3,
"StartTime": "2025-12-22T15:51:29.4952145+00:00",
"EndTime": "2025-12-22T15:51:29.4952145+00:00",
"ChargingDemand": 6.1
}
text/html
Sample:
{"Id":"6c54496b-4126-41a6-8d2f-6e9a762fb66b","CustomerId":2,"AssetId":3,"StartTime":"2025-12-22T15:51:29.4952145+00:00","EndTime":"2025-12-22T15:51:29.4952145+00:00","ChargingDemand":6.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.