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
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

Use this file to discover all available pages before exploring further.

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).