Skip to main content
POST
/
v3
/
chargers
/
{charger}
/
actions
/
charge-limit
Set Charge Limit
curl --request POST \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/actions/charge-limit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connector_id": 123,
  "limit": 123,
  "stack_level": 123
}
'
{
  "status": "<string>"
}
Sets the charging current limit for a specific connector. The limit is specified in Amperes (A). Optionally specify a stack level for the charging profile.
charger
string
required
The UUID of the charger.
connector_id
integer
required
The ID of the connector to set the limit for. Use 0 for the charge point level.
limit
number
required
The charging current limit in Amperes (A). Must be 0 or greater.
stack_level
integer
The stack level for the charging profile. Higher stack levels take priority over lower ones. Defaults to 1 if not specified. Not all chargers support all stack levels.

Response

status
string
The response status from the charger (e.g., Accepted, Rejected).