Skip to content

List the existing charging location sets

Request

Retrieve charging location sets using cursor-based paging (see the Cursor-based pagination documentation on the PTV Developer Portal for more details).

Security
clientCredentials
Query
cursorstring

The cursor of the page to retrieve. No cursor is needed to retrieve the first page.

limitinteger, (int32), [ 1 .. 1000 ]

The maximum amount of charging location sets that should be returned in the response

Default:100
Example:limit=250
curl -i -X GET \
  'https://developer.conundra.eu/_mock/apis/plannings/planning-api/locations/charging-location-sets?cursor=string&limit=250' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
dataArray of objects(ChargingLocationSetListSummary)required

Subset of Charging Location Set matching the provided query, limited to the limit specified in the request.

cursorsobject(CursorsWithOnlyNext)required

Cursor that only supports next cursor navigation.

Response
{ "data": [ {} ], "cursors": { "next": "bmV4dF9fcGFnZQ" } }