devicetype/get
Gets information about device type and its devices.
Authorization
Access JSON Web Token (GetDeviceType)
Request Topic and Payload
Topic
dh/request
Payload Representation
{
"action": {string},
"requestId": {object},
"deviceTypeId": {int}
}
Payload Parameters
Property Name | Required | Type | Description |
---|---|---|---|
action | Yes | string | Action name: devicetype/get |
requestId | No | object | Request unique identifier, will be passed back in the response message. |
deviceTypeId | Yes | int | Device type unique identifier. |
Response Topic and Payload
Topic
dh/response/devicetype/get@{clientId}
Payload Representation
{
"action": {string},
"status": {string},
"requestId": {object},
"deviceType": {
"id": {int},
"name": {string},
"description": {string},
"devices": [{object}]
}
}
Payload Parameters
Property Name | Type | Description |
---|---|---|
action | string | Action name: devicetype/get |
status | string | Operation execution status (success or error). |
requestId | object | Request unique identifier as specified in the request message. |
deviceType | object | DeviceType resource with the list of it's devices. |
deviceType.id | int | Device type identifier. |
deviceType.name | string | Device type name. |
deviceType.description | string | Device type description. |
deviceType.devices | object | List of [Devices] (doc:device), associated with the device type. |
Updated almost 7 years ago