POST api/inventory/{id}/onHand/set
Set Inventory values
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
InventoryIdentifier for inventory to set |
globally unique identifier |
Required |
Body Parameters
Inventory Reset values
InventoryReset| Name | Description | Type | Additional information |
|---|---|---|---|
| InventoryGuid | Collection of byte |
None. |
|
| InventoryIdentifier |
Inventory identifier |
globally unique identifier |
None. |
| PLUG_UID | Collection of byte |
None. |
|
| PluGuid |
Product identifier |
globally unique identifier |
None. |
| OperatorG_UID | Collection of byte |
None. |
|
| OperatorIdentifier |
Operator identifier |
globally unique identifier |
None. |
| InventoryReason |
Inventory reason to use |
InventoryReasons |
None. |
| OnHand |
On Hand to be set |
integer |
None. |
| OnHandPacks |
On Hand packs to be set |
integer |
None. |
| CreatedLocal |
Created local time, if known |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"inventoryGuid": "VcDBRpATjUmHJKq0EBlPWA==",
"inventoryIdentifier": "46c1c055-1390-498d-8724-aab410194f58",
"pluG_UID": "FzmxcLVWO0eviJDpbebBpA==",
"pluGuid": "70b13917-56b5-473b-af88-90e96de6c1a4",
"operatorG_UID": "dw6sr6BL+U6Wx2u9eq4X4A==",
"operatorIdentifier": "afac0e77-4ba0-4ef9-96c7-6bbd7aae17e0",
"inventoryReason": 3,
"onHand": 1,
"onHandPacks": 1,
"createdLocal": "2026-04-03T06:15:30.5614762"
}
application/xml, text/xml
Sample:
<InventoryReset xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Inventory"> <CreatedLocal>2026-04-03T06:15:30.5614762+00:00</CreatedLocal> <InventoryGuid>VcDBRpATjUmHJKq0EBlPWA==</InventoryGuid> <InventoryIdentifier>46c1c055-1390-498d-8724-aab410194f58</InventoryIdentifier> <InventoryReason>3</InventoryReason> <OnHand>1</OnHand> <OnHandPacks>1</OnHandPacks> <OperatorG_UID>dw6sr6BL+U6Wx2u9eq4X4A==</OperatorG_UID> <OperatorIdentifier>afac0e77-4ba0-4ef9-96c7-6bbd7aae17e0</OperatorIdentifier> <PLUG_UID>FzmxcLVWO0eviJDpbebBpA==</PLUG_UID> <PluGuid>70b13917-56b5-473b-af88-90e96de6c1a4</PluGuid> </InventoryReset>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.