POST api/itemPositionapi/add?siteId={siteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteId | globally unique identifier |
None. |
Body Parameters
ItemPositionBaseViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| column | string |
Required String length: inclusive between 0 and 10 |
|
| item_id | globally unique identifier |
Required |
|
| lane | string |
Required String length: inclusive between 0 and 10 |
|
| row | string |
Required String length: inclusive between 0 and 10 |
|
| site_id | globally unique identifier |
Required |
|
| warehouse_code | string |
Required String length: inclusive between 0 and 10 |
Request Formats
application/json, text/json
Sample:
{
"active": true,
"column": "sample string 2",
"item_id": "b4e759ed-6046-434d-ac2c-9b672ac49611",
"lane": "sample string 4",
"row": "sample string 5",
"site_id": "e3591cfb-c022-4ff2-ac56-accee5500f40",
"warehouse_code": "sample string 7"
}
application/xml, text/xml
Sample:
<item_position xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <active>true</active> <column>sample string 2</column> <item_id>b4e759ed-6046-434d-ac2c-9b672ac49611</item_id> <lane>sample string 4</lane> <row>sample string 5</row> <site_id>e3591cfb-c022-4ff2-ac56-accee5500f40</site_id> <warehouse_code>sample string 7</warehouse_code> </item_position>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>