Get the device by uuid for the current client.
Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Request Code Samples
curl --location -g --request GET 'https://iot.exati.com.br/staging/guia/devices/{{device-uuid}}' \
--header 'x-guia-uuid;' \
--header 'Authorization: Basic <encoded-value>'
Responses
application/json
Returned a single device specified by the uuid for the current client
{
"uuid": "string",
"name": "string",
"externalId": "string",
"deviceClassUuid": "string",
"functions": [
{
"name": "string",
"type": "string",
"attributeValues": []
}
]
}
Modified at 2025-07-31 09:35:20