Skip to main content
POST
/
v3
/
chargers
/
{charger}
/
actions
/
stop
Stop Charging
curl --request POST \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/actions/stop \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transaction_id": 123
}
'
{
  "status": "<string>"
}
Sends a remote stop transaction command to the charger to end an active charging session.
charger
string
required
The UUID of the charger.
transaction_id
integer
The ID of the transaction to stop. Must be 0 or greater. If not specified, the charger will stop the active transaction.

Response

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