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": "621d4785-9da3-4e61-867e-8a46fd13a1ac",
"lane": "sample string 4",
"row": "sample string 5",
"site_id": "2d3b2a44-c8ed-45be-b997-e620580d0a2d",
"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>621d4785-9da3-4e61-867e-8a46fd13a1ac</item_id> <lane>sample string 4</lane> <row>sample string 5</row> <site_id>2d3b2a44-c8ed-45be-b997-e620580d0a2d</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>