Updates firmware info
PUT/iot/firmwares/:firmwareId
Authorization: http
name: bearerAuthtype: httpscheme: bearerbearerFormat: JWTdescription: * Users access: "Authorization: Bearer <user_token>"
Updates firmware configuration
Authorization Action:
core:firmwares:update
Request
Path Parameters
firmwareId stringrequired
Firmware identifier
- application/json
Body
required
name string
Possible values: <= 1024 characters
description string
architecture string
metadata object
tags string[]
Responses
- 200
- 400
- 401
- 403
- 404
- 415
- 500
Firmware updated
Failed due to malformed request
Missing or invalid access token provided
User not authorized to update firmware
Firmware not found
Missing or invalid content type
Unexpected server-side error occurred
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://connhex.com/iot/firmwares/:firmwareId' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"description": "string",
"architecture": "string",
"metadata": {},
"tags": [
"string"
]
}'