API Guides

Ready-to-use client libraries for popular programming languages.

API Center Menu

Update Item By Item ID

Request Type: 

PATCH

API Endpoint:

<url>/api/inventory/item/:item_id 

Mandatory Headers Properties:

  • Authorization (type: string): the valid access token from the authentication.ย 

Mandatory Query parameters:

item_id (type: string): The inventory item ID to update. 

Sample Request

{

	"options": {},

	"update": {

		"condition": 2,

		"weight": 40,

		"serial_number": "sn-foo"

	}

}

Response:

  • 200 – success
  • 400 – Item does not exist.
  • 503 โ€“ service unavailable.