POST
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
commands
/
stop
curl --request POST \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/commands/stop \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "transaction_id": 16
}'
{}

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
transaction_id
integer | null
Example:

16

Response

200
application/json
Successfully stopped charging transaction

The response is of type object.

Was this page helpful?