GET api/customers/{customerId}/evchargingrequests/{evChargingRequestId}
Get one specific EV charging request for the specified customer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId |
Customer number/ID |
integer |
Required |
| evChargingRequestId |
EV charging request ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"Id": "6600a317-b787-44d6-ba8c-4198e3ce8a29",
"CustomerId": 2,
"AssetId": 3,
"StartTime": "2025-12-24T13:00:33.8097606+00:00",
"EndTime": "2025-12-24T13:00:33.8097606+00:00",
"ChargingDemand": 6.1
}
text/html
Sample:
{"Id":"6600a317-b787-44d6-ba8c-4198e3ce8a29","CustomerId":2,"AssetId":3,"StartTime":"2025-12-24T13:00:33.8097606+00:00","EndTime":"2025-12-24T13:00:33.8097606+00:00","ChargingDemand":6.1}