Gets firmware info
GET/iot/firmwares/:firmwareId
Retrieves firmware configuration by ID
Authorization Action:
core:firmwares:get
Request
Path Parameters
firmwareId stringrequired
Firmware identifier
Responses
- 200
- 401
- 403
- 404
- 500
Firmware details
- application/json
- Schema
- Example (from schema)
Schema
id string
Unique firmware identifier
name string
Possible values: <= 1024 characters
Firmware name
architecture string
Hardware architecture
description string
Description
metadata object
Custom metadata
tags string[]
Tags
active_release string
Currently active release version
created_at date-time
updated_at date-time
updated_by string
ID of user who last updated
{
"id": "string",
"name": "string",
"architecture": "string",
"description": "string",
"metadata": {},
"tags": [
"string"
],
"active_release": "string",
"created_at": "2025-01-14T09:59:35.497Z",
"updated_at": "2025-01-14T09:59:35.497Z",
"updated_by": "string"
}
Missing or invalid access token provided
User not authorized to access firmware
Firmware not found
Unexpected server-side error occurred
Loading...