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": "fa2b7814-e3b1-485d-ae59-f363f309f394",
"CustomerId": 2,
"AssetId": 3,
"StartTime": "2026-02-27T02:48:03.1515697+00:00",
"EndTime": "2026-02-27T02:48:03.1515697+00:00",
"ChargingDemand": 6.1
}
text/html
Sample:
{"Id":"fa2b7814-e3b1-485d-ae59-f363f309f394","CustomerId":2,"AssetId":3,"StartTime":"2026-02-27T02:48:03.1515697+00:00","EndTime":"2026-02-27T02:48:03.1515697+00:00","ChargingDemand":6.1}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.