Modify a Talq Device patch
Partially updates a device. This operation can just update and add new functions/attribute values to the device, but it does not reduce its scope
Request
Body Params application/json
{
"address": "string",
"name": "string",
"class": "string",
"functions": [
{
"id": "string",
"type": "BasicFunction"
}
]
}
Request samples
curl --location --request PATCH 'https://iot.exati.com.br/talq/devices/' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": "string",
"name": "string",
"class": "string",
"functions": [
{
"id": "string",
"type": "BasicFunction"
}
]
}'
Responses
application/json
The device is successfully updated
[
{
"address": "string",
"name": "string",
"class": "string",
"functions": [
{
"id": "string",
"type": "BasicFunction"
}
]
}
]
Modified at 2025-03-14 11:13:26