/v1/configuration GET
The /charging
endpoint provides momentary information about the current charging process.
Values
pdName
- string - Name of the Power DomainctrlrName
- string - Name of the ControllersessionId
- string - UUID of the charging current sessioneffectiveAmperageLimit
- int - Absolute amperage limit of the EVSEhasPhaseRotation
- bool - Indicates if the EVSE has phases rotated by 120°hasPhaseStShutoff
- bool - Indicates if the EVSE has a phase shutoff relayhasPhaseSTTurnon
- bool - Indicates if the EVSE has a phase turn on relay
Example Output
- REST
- WebSocket
http://127.0.0.1/api/v1/configuration
{
"powerDomainName":"Zuhause",
"controllerName":"Garage",
"sessionId":"0b8cd3b0-5412-e569-9a39-ed3d1c2fa956",
"effectiveAmperageLimit":32,
"hasPhaseRotation":false,
"hasPhaseShutoff":false,
"hasPhaseSTTurnon": true
}
ws://127.0.0.1:80/api/ws
{
"topic":"configuration",
"message":
{
"powerDomainName":"Zuhause",
"controllerName":"Garage",
"sessionId":"0b8cd3b0-5412-e569-9a39-ed3d1c2fa956",
"effectiveAmperageLimit":32,
"hasPhaseRotation":false,
"hasPhaseShutoff":false,
"hasPhaseSTTurnon": true
}
}