/
Upsert charging location...
Create or update a charging location set. A unique ID is required to identify the charging location set. Calling this endpoint with an existing ID will update the charging location set.
Security
clientCredentials
- Mock serverhttps://developer.conundra.eu/_mock/apis/plannings/planning-api/locations/charging-location-sets/{id}
- Production Apihttps://api.conundra.eu/planning/v1/locations/charging-location-sets/{id}
curl -i -X PUT \
'https://developer.conundra.eu/_mock/apis/plannings/planning-api/locations/charging-location-sets/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'If-Match: W/"24"' \
-d '{
"id": "cb1fb12c-0abc-413c-a69d-63c62566685f",
"name": "Flanders Charging Locations",
"charging_locations": [
{
"id": "cb1fb12c-0abc-413c-a69d-63c62566685f",
"charging_stations": [
{
"maximum_power": 300
}
]
}
]
}'