Skip to main content
POST
/
device
/
firmware
/
status
Firmware upgrade status
curl --request POST \
  --url https://api.telluspower.example.com/v1/device/firmware/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firmware_version": "2.2.0",
  "status": "downloading",
  "progress": 45,
  "message": "Downloading..."
}
'

Documentation Index

Fetch the complete documentation index at: https://developers.telluspowergroup.com/llms.txt

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

Authorizations

Authorization
string
header
required

Charger-side bearer token. Obtained by exchanging device_id and device_secret (issued at registration) at /v1/device/token. Valid for 24 hours.

Body

application/json
firmware_version
string
required
status
enum<string>
required
Available options:
downloading,
upgrading,
success,
failed
progress
integer
Required range: 0 <= x <= 100
message
string

Response

200

Status accepted.