Skip to main content
PUT
/
v3
/
chargers
/
{charger}
Update Charger
curl --request PUT \
  --url https://app.plugchoice.com/api/v3/chargers/{charger} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reference": "<string>"
}
'
{
  "uuid": "<string>",
  "id": 123,
  "identity": "<string>",
  "reference": "<string>",
  "connection_status": "<string>",
  "status": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "licenses": {
    "smart": true,
    "pro": true
  },
  "permissions": {
    "basic": true,
    "sensitive": true,
    "full": true
  }
}
Updates the details of a specific charger.
charger
string
required
The UUID of the charger to update.
reference
string
A user-defined reference or label for the charger. Maximum 255 characters. Set to null to clear.

Response

uuid
string
The unique UUID of the charger.
id
integer
The numeric ID of the charger.
identity
string
The unique identity string of the charger.
reference
string
The updated reference for the charger.
connection_status
string
The current connection status of the charger.
status
string
The current OCPP status of the charger.
created_at
string
ISO 8601 timestamp of when the charger was created.
updated_at
string
ISO 8601 timestamp of when the charger was last updated.
licenses
object
The charger’s active licenses.
permissions
object
The authenticated user’s permissions for this charger.