IotHub Nouvenn
  1. Device
IotHub Nouvenn
  • API
    • TALQ
      • Device Class
        • Create a Talq Device Class
        • Update Talq Device Class
        • Delete a Talq Device Class
        • Update a Talq Device Class
      • Device
        • Create a Talq Device
          POST
        • List Talq Devices
          GET
        • Modify a Talq Device
          PATCH
        • Update Talq Devices
          PUT
        • Delete a Talq Device
          DELETE
        • Get a Talq Device
          GET
        • Modify a Talq Device patch
          PATCH
        • Update a Talq Device
          PUT
        • Get a Talq Device Function
          GET
        • Get a Talq Device Attribute
          GET
      • Services
        • Create a Talq Service
      • Group
        • List Talq Groups
        • Get a Talq Group
  • Docs TALQ
    • Visão Geral do Projeto
    • Processo de Inicialização - Bootstrap Process
    • API TALQ
  1. Device

Update Talq Devices

PUT
/talq/devices
Update a list of existing devices. Replaces the entire existing device definition. For the function array this will mean the existing device functions will be replaced with those specified in this call.

Request

Query Params

Body Params application/json

Example
[
    {
        "address": "{{gateway-uuid}}",
        "name": "{{$commerce.productAdjective}} {{$commerce.productName}}",
        "class": "cls:AllAttributes",
        "functions": [
            {
                "id": "fBasicFunction",
                "type": "BasicFunction"
            }
        ]
    }
]

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PUT 'https://iot.exati.com.br/talq/devices?clientAddress={{gateway-uuid}}' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "address": "{{gateway-uuid}}",
        "name": "{{$commerce.productAdjective}} {{$commerce.productName}}",
        "class": "cls:AllAttributes",
        "functions": [
            {
                "id": "fBasicFunction",
                "type": "BasicFunction"
            }
        ]
    }
]'

Responses

🟢200OK
application/json
The list of device is successfully updated
Body

Example
[
    {
        "address": "string",
        "name": "string",
        "class": "string",
        "functions": [
            {
                "id": "string",
                "type": "BasicFunction"
            }
        ]
    }
]
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
🟠409409
🟠422Parameter Error
Modified at 2025-07-30 16:48:35
Previous
Modify a Talq Device
Next
Delete a Talq Device