Skip to main content
GET
/
v3
/
chargers
/
{charger}
/
firmware
Get Firmware Status
curl --request GET \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/firmware \
  --header 'Authorization: Bearer <token>'
{
  "current_version": "<string>",
  "latest_version": "<string>",
  "can_update": true,
  "status": "<string>",
  "progress": 123
}
Returns the firmware overview for the specified charger, including the current version and whether an update is available.
charger
string
required
The UUID of the charger.

Response

current_version
string
The current firmware version installed on the charger.
latest_version
string
The latest firmware version available for this charger.
can_update
boolean
Whether a firmware update is available.
status
string
The current firmware update status (e.g., idle, requested, downloading, installed).
progress
integer
The firmware update progress percentage (0-100).