POST
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
commands
/
charge-limit
curl --request POST \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/commands/charge-limit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "connector_id": "5",
  "limit": 27
}'
{}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
integer
required

The ID of the team.

charger_id
integer
required

The ID of the charger.

Body

application/json
connector_id
enum<number>
required
Example:

"5"

limit
number
required

Must be at least 0.

Example:

27

Response

200
application/json
Successfully set charging current limit

The response is of type object.

Was this page helpful?