Lists firmware releases
GET/iot/firmwares/:firmwareId/releases
Authorization: http
name: bearerAuthtype: httpscheme: bearerbearerFormat: JWTdescription: * Users access: "Authorization: Bearer <user_token>"
Gets all releases for a firmware with pagination
Authorization Action:
core:firmwares:listReleases
Request
Path Parameters
firmwareId stringrequired
Firmware identifier
Query Parameters
offset integer
Number of items to skip
limit integer
Possible values: >= 1
and <= 100
Default value: 10
Maximum items per page
Responses
- 200
- 401
- 403
- 404
- 500
Page of releases
- application/json
- Schema
- Example (from schema)
Schema
total integer
Total number of items
offset integer
Number of items to skip
limit integer
Maximum items per page
releases object[]
{
"total": 0,
"offset": 0,
"limit": 0,
"releases": [
{
"id": "string",
"version": "string",
"note": "string",
"mandatory": true,
"min_version": "string",
"max_version": "string",
"filename": "string",
"size": 0,
"checksum": "string",
"created_at": "2025-01-14T09:59:35.499Z",
"updated_at": "2025-01-14T09:59:35.499Z",
"updated_by": "string"
}
]
}
Missing or invalid access token provided
User not authorized to access firmware
Firmware not found
Unexpected server-side error occurred
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://connhex.com/iot/firmwares/:firmwareId/releases' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'