Skip to main content
POST
/
v2
/
evses
/
{uid}
/
connectors
/
{connectorId}
/
remote-stop-transaction
Requests an EVSE to stop a transaction
curl --request POST \
  --url https://api.spirii.com/v2/evses/{uid}/connectors/{connectorId}/remote-stop-transaction \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactionId": 1
}
'
{
  "status": "Accepted"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer <SPIRII_API_KEY>

Path Parameters

uid
number
required

Uniquely identifies the EVSE

Example:

123456

connectorId
number
required

Identifier of the Connector within the EVSE

Example:

1

Body

application/json
transactionId
number
required

The identifier of the transaction which the EVSE is requested to stop

Example:

1

Response

status
enum<string>
required

Status indicating whether the EVSE accepts the request to stop a transaction.

Available options:
Accepted,
Rejected
Example:

"Accepted"