INC-NETASSET

Modify or Add jNumber

Modify or add jNumber according to device ID and asset physical index.

Interface URI

/netasset/asset/addJnumber

Access Method

HTTP
PUT
Parameters
Query parameters
devId Device ID.
Long integer type. Required. No default value.
phyIndex Asset physical index.
Long integer type. Required. No default value.
jNumber Product number
String type.
Status codes
  • 204(No Content): Success.
  • 404(Not Found): Failed to find data related to the ID.
  • 409(Conflict): Failure. For more information, see Error code instructions.
Message header
HTTP/1.1 204 No Content
...

Example

Change the product number to J-number for the network asset with device ID 1 and asset physical index 1001.

Request
PUT http://127.0.0.1:8080/imcrs/netasset/asset/addJnumber?devId=1&phyIndex=1001&productNumber=J-number
accept: application/xml
...


	no content;
Response
HTTP/1.1 204 No Content
...