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": "b61d5135-c791-43c8-b747-15dca3af6b65",
      "CustomerId": 2,
      "AssetId": 3,
      "StartTime": "2026-02-27T02:48:03.1828291+00:00",
      "EndTime": "2026-02-27T02:48:03.1828291+00:00",
      "ChargingDemand": 6.1
    },
    {
      "Id": "b61d5135-c791-43c8-b747-15dca3af6b65",
      "CustomerId": 2,
      "AssetId": 3,
      "StartTime": "2026-02-27T02:48:03.1828291+00:00",
      "EndTime": "2026-02-27T02:48:03.1828291+00:00",
      "ChargingDemand": 6.1
    }
  ]
}

text/html

Sample:
{"CustomerId":1,"ChargingRequests":[{"Id":"b61d5135-c791-43c8-b747-15dca3af6b65","CustomerId":2,"AssetId":3,"StartTime":"2026-02-27T02:48:03.1828291+00:00","EndTime":"2026-02-27T02:48:03.1828291+00:00","ChargingDemand":6.1},{"Id":"b61d5135-c791-43c8-b747-15dca3af6b65","CustomerId":2,"AssetId":3,"StartTime":"2026-02-27T02:48:03.1828291+00:00","EndTime":"2026-02-27T02:48:03.1828291+00:00","ChargingDemand":6.1}]}