EVSEs Bulk
This resource retrieves a list of EVSEs for electric vehicles by a list of pool IDs.
Requests against this resource use the HTTP GET method.
Request Example
The code block below shows a bulk request for charging stations using a bearer token.
GET
https://ev-v2.cc.api.here.com/ev/evses/bulk.json?
id={id}
-H 'Authorization: Bearer{YOUR_TOKEN}'
The code block below shows a bulk request for charging stations using an API Key.
GET
https://ev-v2.cc.api.here.com/ev/evses/bulk.json?id=ABC&id=XYZ&apiKey={YOUR_API_KEY};
The code block below shows a bulk request for charging stations by multiple evses IDs using a bearer token.
GET
https://ev-v2.cc.api.here.com/ev/evses/bulk.json?id=ABC&id=XYZ
-H 'Authorization: Bearer{YOUR_TOKEN}'
The code block below shows a bulk request for charging stations by multiple evses IDs using an API Key.
GET
https://ev-v2.cc.api.here.com/ev/evses/bulk.json?id=ABC&id=XYZ&apiKey={YOUR_API_KEY};
Request Parameters
The table below documents both mandatory and optional request parameters supported by this resource.
Parameter | Required | Description |
---|---|---|
app_id - Legacy | Yes | A-20 byte Base64 URL-safe encoded string used for the authentication of the client application. You must include an |
app_code - Legacy | Yes | A-20 byte Base64 URL-safe encoded string used for the authentication of the client application. You must include an |
id | Yes | The id in the poolId attribute in the evStation element.Default: doesn't apply |
Response to this Request
For more information on responses to queries against the evses/bulk
resource, see EVSEs Response.