POST api/InventoryTransfer
Request Information
URI Parameters
None.
Body Parameters
TransferInventoryVm| Name | Description | Type | Additional information |
|---|---|---|---|
| InventoryIds | Collection of integer |
None. |
|
| UserId | integer |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"InventoryIds": [
1,
2
],
"UserId": 1,
"Remark": "sample string 2"
}
application/xml, text/xml
Sample:
<TransferInventoryVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.InventoryModels">
<InventoryIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</InventoryIds>
<Remark>sample string 2</Remark>
<UserId>1</UserId>
</TransferInventoryVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.