Updated on 2022-02-24 GMT+08:00

Modifying Device Information

Typical Scenario

After an NA registers a device with the IoT platform and the basic information about the device changes, the NA can also call this API to modify device information on the IoT platform.

API Function

This API is used to modify the basic information about a device, including the device type, device model, manufacturer, and access protocol.

API Description

1
public function  modifyDeviceInfo($mdiInDto, $deviceId, $appId, $accessToken)

Class

DeviceManagement

Parameter Description

Parameter

Mandatory or Optional

Location

Description

$mdiInDto

Mandatory

body

For details, see ModifyDeviceInforInDTO structure.

$deviceId

Mandatory

path

Identifies a device. The device ID is allocated by the IoT platform during device registration.

$appId

Mandatory

query

If the device belongs to the current application, set this parameter to null. Otherwise, set this parameter to the ID of the authorized application.

$accessToken

Mandatory

header

This parameter is set to the value of the access token obtained by calling the Authentication API.

ModifyDeviceInforInDTO structure

Parameter

Mandatory or Optional

Location

Description

$customFields

Optional

body

User-defined field list. Users can set customized fields. For details, see CustomField structure.

$deviceConfig

Optional

body

Indicates device configuration information. For details, see DeviceConfigDTO structure.

$deviceType

Optional

body

Indicates the device type. The upper camel case is used, for example, MultiSensor, ContactSensor, and CameraGateway.

In the NB-IoT solution, the device type must be changed to be the same as that defined in the profile after a device is registered.

$endUser

Optional

body

Indicates an end user. If the device is a directly connected device, this parameter is optional. If it is a non-directly connected device, this parameter can be set to null.

$location

Optional

body

Indicates the device location.

$manufacturerId

Optional

body

Uniquely identifies a manufacturer.

In the NB-IoT solution, the manufacturer ID must be changed to be the same as that defined in the profile after a device is registered.

$manufacturerName

Optional

body

Indicates the manufacturer name.

$model

Optional

body

Indicates the device model.

In the NB-IoT solution, the model must be changed to be the same as that defined in the profile after a device is registered.

$mute

Optional

body

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.

  • TRUE: The device is in the frozen state.
  • FALSE: The device is not in the frozen state.

$name

Optional

body

Indicates the device name.

$organization

Optional

body

Indicates the organization to which the device belongs.

$protocolType

Optional

body

Indicates the protocol type used by the device. The value options are CoAP, huaweiM2M, Z-Wave, ONVIF, WPS, Hue, WiFi, J808, Gateway, ZigBee, and LWM2M.

$region

Optional

body

Indicates the region information about a device.

$timezone

Optional

body

Indicates the time zone where the device is located. The time zone code is used. For example, the time zone code of Beijing time zone is Asia/Beijing.

$imsi

Optional

body

Indicates the IMSI of an NB-IoT device.

$ip

Optional

body

Indicates the device IP address.

$isSecure

Optional

body

Indicates the security status of a specified device. The default value is false.

  • true: The device is secure.
  • false: The device is not secure.

$psk

Optional

body

Indicates the PSK. The value is a string of characters that consist of only upper-case letters A to F, lower-case letters a to f, and digits 0 to 9.

$tags

Optional

body

Indicates the device tag information. For details, see Tag2 structure.

CustomField structure

Parameter

Mandatory or Optional

Location

Description

fieldName

Optional

Body

Indicates the field name.

fieldType

Optional

Body

Indicates the field type.

fieldValue

Optional

Body

Indicates the field value.

DeviceConfigDTO structure

Parameter

Mandatory or Optional

Description

$dataConfig

Optional

Indicates data configuration information. For details, see DataConfigDTO structure.

DataConfigDTO structure

Parameter

Mandatory or Optional

Type

Description

$dataAgingTime

Optional

Integer

Indicates the data aging time. The value range is 0-90. Unit: day.

Tag2 structure

Parameter

Mandatory or Optional

Type

Location

Description

tagName

Mandatory

String(1-128)

body

Indicates the tag name.

tagValue

Mandatory

String(1-1024)

body

Indicates the tag value.

tagType

Optional

Integer

body

Indicates the tag type.

Return Value

response:
Status Code: 200 OK

Error Codes

HTTP Status Code

Error Code

Error Description

Remarks

200

100203

The application is not existed.

The application does not exist.

Recommended handling:

  • Check whether appId carried in the HTTP request header is correct.
  • Check whether appId in the request path (URL) is correct.

400

100022

The input is invalid.

An input parameter is invalid.

Recommended handling: Check whether parameters carried in the API call request are valid.

400

100440

The isSecure is invalid.

The value of isSecure is incorrect.

400

50400

The input is invalid.

An input parameter is invalid.

Recommended handling: Check whether parameters carried in the API call request are valid.

403

100203

The application is not existed.

The application does not exist.

Recommended handling:

  • Check whether appId carried in the HTTP request header is correct.
  • Check whether appId in the request path (URL) is correct.

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.

403

500004

The amount of frozen devices has reached the limit.

The number of frozen devices has reached the upper limit.

404

100403

The device is not existed.

The device does not exist.

Recommended handling: Check whether deviceId is correct.

404

100418

The deviceData is not existed.

The device data does not exist.

Recommended handling:

  • If deviceId carried in the request is incorrect, check whether deviceId belongs to appId or whether deviceId is incorrect.
  • Check whether appId carried in the header contains deviceId.
  • If the URL contains the optional parameter appId, check whether the value of appId is correct.

500

100203

The application is not existed.

The application does not exist.

Recommended handling:

  • Check whether appId carried in the HTTP request header is correct.
  • Check whether appId in the request path (URL) is correct.

500

100441

The amount of nonSecure device has reached the limit.

The number of non-security devices has reached the upper limit.

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.