Skip to main content
POST
/
v2
/
chargeboxes
/
{id}
/
reset
Performs a hard or soft reset on a charge box.
curl --request POST \
  --url https://api.spirii.com/v2/chargeboxes/{id}/reset \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "Soft"
}'
{
  "status": "Accepted",
  "error": {
    "message": "Charge box is not connected"
  }
}

Authorizations

Authorization
string
header
required

Authorization: Bearer <SPIRII_API_KEY>

Path Parameters

id
number
required

ID that uniquely identifies the charge box

Example:

123456

Body

application/json
type
enum<string>
required

This contains the type of reset that the charge box should perform.

Available options:
Hard,
Soft
Example:

"Soft"

Response

status
enum<string>
required

This indicates whether the charge box is able to perform the reset/reboot

Available options:
Accepted,
Rejected
Example:

"Accepted"

error
object

This contains the error message if the action was rejected