Available Personal Smart Charging Modes
Which modes are active for my home charger?
Variables required:
- chargePoint (integer)
Request:
curl --location 'https://{{baseUrl}}/public-api/resources/charge-points/v2.0/{{chargePoint}}/available-personal-smart-charging-modes' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{apiToken}}'
This request will return all currently active modes for the respective tenant with regards to smart charging control. The options available could vary:
- scheduled
- agile-octopus
- octopus-go
- energi-elspot
- nordpool
Response:
{
"data": [
{
"name": "Scheduled",
"integrationId": null,
"type": "user_controlled_schedule",
"defaults": {
"start_time": "12:00:00",
"end_time": "12:00:00",
"target_charge": null
}
}
]
}
Updated 12 months ago