IotHub Nouvenn
  1. Device Class
IotHub Nouvenn
  • API
    • TALQ
      • Device Class
        • Create a Talq Device Class
          POST
        • Update Talq Device Class
          PUT
        • Delete a Talq Device Class
          DELETE
        • Update a Talq Device Class
          PUT
      • Device
        • Create a Talq Device
        • List Talq Devices
        • Modify a Talq Device
        • Update Talq Devices
        • Delete a Talq Device
        • Get a Talq Device
        • Modify a Talq Device patch
        • Update a Talq Device
        • Get a Talq Device Function
        • Get a Talq Device Attribute
      • 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 Class

Delete a Talq Device Class

DELETE
/talq/device-classes/{className}
Delete device class

Request

Path Params

Query Params

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 DELETE 'https://iot.exati.com.br/talq/device-classes/cls:AllAttributes2?clientAddress={{gateway-uuid}}'

Responses

🟢200OK
application/json
The device class thas has been deleted
Body

Example
[
    {
        "name": "string",
        "functions": [
            {
                "functionId": "BasicFunction02",
                "type": "BasicFunction",
                "vendorAttributes": [
                    {
                        "name": "string",
                        "description": "string",
                        "minValue": 0,
                        "maxValue": 0,
                        "regex": "string",
                        "readOnly": true,
                        "enumValues": [
                            "string"
                        ],
                        "unit": "string",
                        "vendorUuid": "string",
                        "scope": "measurement",
                        "type": "AttributeBinary",
                        "commands": {},
                        "types": {}
                    }
                ],
                "attributes": [
                    {
                        "name": "string",
                        "description": "string",
                        "minValue": 0,
                        "maxValue": 0,
                        "regEx": "string",
                        "readOnly": true,
                        "enumValues": [
                            "string"
                        ],
                        "unit": "string",
                        "commands": {
                            "scope": "default",
                            "attributes": "reason",
                            "states": {},
                            "levels": {}
                        },
                        "types": {
                            "address": "string",
                            "name": "LuminaireType",
                            "properties": [
                                {
                                    "name": "string",
                                    "description": "string",
                                    "minValue": 0,
                                    "maxValue": 0,
                                    "regEx": "string",
                                    "readOnly": true,
                                    "enumValues": [
                                        "string"
                                    ],
                                    "unit": "string"
                                }
                            ]
                        }
                    }
                ],
                "events": [
                    {
                        "name": "string",
                        "description": "string",
                        "uuid": "string",
                        "functionUuid": "string",
                        "type": "string"
                    }
                ]
            }
        ]
    }
]
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
🟠409409
🟠422Parameter Error
Modified at 2025-07-30 17:09:46
Previous
Update Talq Device Class
Next
Update a Talq Device Class