Gets firmware info
GET/iot/firmwares/:firmwareId
Authorization: http
name: bearerAuthtype: httpscheme: bearerbearerFormat: JWTdescription: * Users access: "Authorization: Bearer <user_token>"
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
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://connhex.com/iot/firmwares/:firmwareId' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'