Querying Device Information in Batches
Typical Scenario
If an NA needs to view detailed information (such as the manufacturer, model, version, status, and service attributes) of multiple devices that have been registered on the IoT platform, the NA can call this API to obtain the information.
API Function
This API is used by an NA to query detailed information (such as configuration, status and service attributes) of multiple devices based on specified conditions on the IoT platform.
API Prototype
Method |
GET |
---|---|
URL |
https://server:port/iocm/app/dm/v1.4.0/devices?appId={appId}&deviceType={deviceType}&endTime={endTime}&gatewayId={gatewayId}&location={location}&name={name}&nodeType={nodeType}&pageNo={pageNo}&pageSize={pageSize}&select={select}&sort={sort}&startTime={startTime}&status={status} |
Transport Protocol |
HTTPS |
Request Parameters
Parameter |
Mandatory or Optional |
Type |
Location |
Description |
---|---|---|---|---|
app_key |
Mandatory |
String |
header |
Identifies an application that can be accessed on the IoT platform. The value of this parameter is allocated by the IoT platform when the application is created on the platform. |
Authorization |
Mandatory |
String |
header |
Indicates the authentication information for accessing the IoT platform. The value is Bearer {accessToken}, in which {accessToken} indicates the access token returned by the Authentication API. |
appId |
Optional |
String |
query |
Identifies an application that can be accessed on the IoT platform. The value of this parameter is allocated by the IoT platform when the application is created on the platform. Set this parameter to the value of appId of the authorized application. |
gatewayId |
Optional |
String |
query |
Identifies a gateway. The gateway ID is the same as the device ID if the device is a directly connected device. If the device is an indirectly connected device, the gateway ID is the device ID of the directly connected device (that is, the gateway) with which it associates. gatewayId and pageNo cannot be both left empty. |
nodeType |
Optional |
String |
query |
Indicates the node type. The value options are ENDPOINT, GATEWAY, and UNKNOW. |
deviceType |
Optional |
String |
query |
Indicates the device type. |
location |
Optional |
String |
query |
Indicates the device location. |
name |
Optional |
String |
query |
Indicates the device name. |
pageNo |
Optional |
Integer |
query |
Indicates the page number to be queried. The value is an integer greater than or equal to 0. The default value is 0, indicating that the first page is queried. gatewayId and pageNo cannot be both left empty. |
pageSize |
Optional |
Integer |
query |
Indicates the number of records to be displayed on each page. Pagination is implemented based on the value of this parameter. The value is an integer ranging from 1 to 250. The default value is 25. |
status |
Optional |
String |
query |
Indicates whether the device is online. The value options are ONLINE, OFFLINE, INACTIVE, and ABNORMAL.
|
startTime |
Optional |
String |
query |
Indicates the start time. Records with the device registration time later than the specified start time are queried. The value is in the format of yyyyMMdd'T'HHmmss'Z'. An example value is 20151212T121212Z. |
endTime |
Optional |
String |
query |
Indicates the end time. Records with the device registration time earlier than the specified end time are queried. The value is in the format of yyyyMMdd'T'HHmmss'Z'. An example value is 20151212T121212Z. |
sort |
Optional |
String |
query |
Indicates the sorting mode of queried records.
The default value is DESC. |
select |
Optional |
String |
query |
Indicates the record to be returned. The value can be IMSI. |
Response Parameters
Status Code: 200 OK
Parameter |
Type |
Description |
---|---|---|
totalCount |
Long |
Indicates the number of queried records. |
pageNo |
Long |
Indicates the page number. |
pageSize |
Long |
Indicates the number of records on each page. |
devices |
List<QueryDeviceDTO4Cloud2NA> |
Indicates the device list. |
QueryDeviceDTO4Cloud2NA structure
Parameter |
Type |
Description |
---|---|---|
deviceId |
String(256) |
Uniquely identifies a device. The value of this parameter is allocated by the IoT platform during device registration. |
gatewayId |
String(256) |
Identifies a gateway. The gateway ID is the same as the device ID if the device is a directly connected device. If the device is an indirectly connected device, the gateway ID is the device ID of the directly connected device (that is, the gateway) with which it associates. |
nodeType |
Enum |
Indicates the node type. The value options are ENDPOINT, GATEWAY, and UNKNOW. |
createTime |
String(256) |
Indicates the time when the device is created. The value is in the format of yyyyMMdd'T'HHmmss'Z'. An example value is 20151212T121212Z. |
lastModifiedTime |
String(256) |
Indicates the last time when the device is modified. |
deviceInfo |
Indicates the device data. |
|
services |
List<DeviceService> |
Indicates the service list. |
alarmInfo |
Indicates the device alarm details. |
Parameter |
Type |
Description |
---|---|---|
nodeId |
String(256) |
Uniquely identifies a device. |
name |
String(256) |
Indicates the device name. |
description |
String(2048) |
Indicates the device description. |
manufacturerId |
String(256) |
Uniquely identifies a manufacturer. |
manufacturerName |
String(256) |
Indicates the manufacturer name. |
mac |
String(256) |
Indicates the MAC address of the device. |
location |
String(2048) |
Indicates the device location. |
deviceType |
String(256) |
Indicates the device type. The upper camel case is used, for example, MultiSensor, ContactSensor, and CameraGateway. |
model |
String(256) |
Indicates the device model. |
swVersion |
String(256) |
Indicates the software version of the device. |
fwVersion |
String(256) |
Indicates the firmware version of the device. |
hwVersion |
String(256) |
Indicates the hardware version of the device. |
imsi |
String |
Indicates the IMSI of an NB-IoT device. |
protocolType |
String(256) |
Indicates the protocol used by the device. |
radiusIp |
String |
Indicates the RADIUS address. |
bridgeId |
String(256) |
Identifies the bridge through which the device accesses the IoT platform. |
status |
String |
Indicates whether the device is online. The value options are ONLINE, OFFLINE, INACTIVE, and ABNORMAL.
|
statusDetail |
String(256) |
Indicates the device status details, which vary according to the value of status.
|
mute |
String |
Indicates whether the device is in the frozen state. Based on the value of this parameter, the IoT platform determines whether to manage and store data reported by the device.
|
supportedSecurity |
String |
Indicates whether the security mode is supported.
|
isSecurity |
String |
Indicates whether the security mode is enabled.
|
signalStrength |
String(256) |
Indicates the signal strength of the device. |
sigVersion |
String(256) |
Indicates the SIG version of the device. |
serialNumber |
String(256) |
Indicates the serial number of the device. |
batteryLevel |
String(256) |
Indicates the battery level of the device. |
When the device status information is reported over the southbound API, status and statusDetail must be included at the same time. In addition, it is recommended that statusDetail not be used for logical determination.
Parameter |
Type |
Description |
---|---|---|
serviceId |
String(256) |
Identifies a service. |
serviceType |
String(256) |
Indicates the service type. |
serviceInfo |
Indicates the service information. |
|
data |
ObjectNode(2097152) |
Indicates an attribute value pair. |
eventTime |
String(256) |
The value is in the format of yyyyMMdd'T'HHmmss'Z'. An example value is 20151212T121212Z. |
Parameter |
Type |
Description |
---|---|---|
muteCmds |
List<String> |
Indicates the list of shielded device commands. |
Parameter |
Type |
Description |
---|---|---|
alarmSeverity |
String |
Indicates the alarm severity. |
alarmStatus |
Boolean |
Indicates the alarm status. |
alarmTime |
String |
Indicates the time when the alarm is reported. |
Request Example
Method: GET Request: https://server:port/iocm/app/dm/v1.4.0/devices?gatewayId={gatewayId}&select=imsi Header: app_key: ****** Authorization: Bearer ***** Content-Type: application/json
Response Example
Response: Status Code: 200 OK Content-Type: application/json Body: { "totalCount":"****", "pageNo":"*****", "pageSize":"*****", "devices":[ { "deviceId":"xxxxx", "gatewayId":"xxxxx", "nodeType":"xxxxx", "deviceInfo":{ "nodeId": "123456", "name":"Sensor_12", "manufacturerName":"wulian", "deviceType":"gateway", "model":"90", "mac":"C7EA1904004B1204", "swVersion":"th", "fwVersion":"seu", "hwVersion":"sru", "protocolType":"zigbee", "description":"smockdetector", "imsi":"xxxxx" }, "services":[ { "serviceType":"air_conditioner", "serviceId":"1", "data":{ "battery_low":"1" } }, { "serviceType":"air_conditioner", "serviceId":"jkh", "data":{ "battery_low":"jhj" } } ] }, { "deviceId":"xxxxx", "gatewayId":"xxxxx", "nodeType":"xxxxx", "deviceInfo":{ "nodeId": "223456", "name":"Sensor_12", "manufacturerName":"wulian", "type":"90", "model":" 90", "mac":"C7EA1904004B1204", "swVersion":"…", "fwVersion":"…", "hwVersion":"…", "protocolType":"zigbee", "description":"smockdetector", "imsi":"xxxxx" }, "services":[ { "serviceType":"air_conditioner", "serviceId":"1", "data":{ "battery_low":"1" } }, { "serviceType":"air_conditioner", "serviceId":"1", "data":{ "battery_low":"1" } } ] } ] }
Error Codes
HTTP Status Code |
Error Code |
Error Description |
Remarks |
---|---|---|---|
400 |
100216 |
The application input is invalid. |
The application input is invalid. Recommended handling: Check whether parameters in the API request are correct by referring to the request parameter description. |
400 |
100218 |
The gatewayId and pageNo cannot be both null. |
The gatewayId and pageNo parameters cannot be null at the same time. Recommended handling: Check whether gatewayId or pageNo is set. |
400 |
100405 |
The request parameter is invalid. |
The request message contains invalid parameters. Recommended handling: Check whether parameters in the API request are correct by referring to the request parameter description. |
403 |
100203 |
The application is not existed. |
The application does not exist. Recommended handling:
|
403 |
100217 |
The application hasn't been authorized. |
The application has not been authorized. Recommended handling: In scenarios where applications are not authorized, ensure that request parameter appId is null. |
403 |
1010009 |
app throttle exceed. |
The NA calls the API at a frequency that exceeds the flow control threshold (100 calls per minute by default). Recommended handling: Contact IoT platform maintenance personnel to adjust the flow control threshold or control the API call frequency. |
403 |
1010005 |
App_key or access_token is invalid. |
The access token is invalid. Recommended handling: Check whether accessToken carried in the API request is correct. |
500 |
100203 |
The application is not existed. |
The application does not exist. Recommended handling:
|
500 |
50252 |
Internal server error. |
An internal server error occurs. Recommended handling: An internal error occurs on the IoT platform. Contact IoT platform maintenance personnel. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot