GET api/customers/{customerId}/evchargingrequests

Get all the EV charging requests for the specified customer.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerId

Customer number/ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

EvChargingRequestsForCustomerStorage
NameDescriptionTypeAdditional information
CustomerId

integer

None.

ChargingRequests

Collection of EvChargingRequestResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerId": 1,
  "ChargingRequests": [
    {
      "Id": "4e4f2095-59bb-4a56-a3f9-9d6fc41b4392",
      "CustomerId": 2,
      "AssetId": 3,
      "StartTime": "2025-05-20T00:04:57.9595792+00:00",
      "EndTime": "2025-05-20T00:04:57.9595792+00:00",
      "ChargingDemand": 6.1
    },
    {
      "Id": "4e4f2095-59bb-4a56-a3f9-9d6fc41b4392",
      "CustomerId": 2,
      "AssetId": 3,
      "StartTime": "2025-05-20T00:04:57.9595792+00:00",
      "EndTime": "2025-05-20T00:04:57.9595792+00:00",
      "ChargingDemand": 6.1
    }
  ]
}

text/html

Sample:
{"CustomerId":1,"ChargingRequests":[{"Id":"4e4f2095-59bb-4a56-a3f9-9d6fc41b4392","CustomerId":2,"AssetId":3,"StartTime":"2025-05-20T00:04:57.9595792+00:00","EndTime":"2025-05-20T00:04:57.9595792+00:00","ChargingDemand":6.1},{"Id":"4e4f2095-59bb-4a56-a3f9-9d6fc41b4392","CustomerId":2,"AssetId":3,"StartTime":"2025-05-20T00:04:57.9595792+00:00","EndTime":"2025-05-20T00:04:57.9595792+00:00","ChargingDemand":6.1}]}