POST api/externalstockquantity
Request Information
URI Parameters
None.
Body Parameters
Collection of ExternalStockQuantityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ArticleNumber | integer |
None. |
|
| Quantity | integer |
None. |
|
| ExternalStockLocationId | integer |
None. |
Remarks
None.
Example
None.
Request Formats
application/json, text/json
Sample:
[
{
"ArticleNumber": 1,
"Quantity": 2,
"ExternalStockLocationId": 3
},
{
"ArticleNumber": 1,
"Quantity": 2,
"ExternalStockLocationId": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfExternalStockQuantityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.ExternalStock">
<ExternalStockQuantityRequest>
<ArticleNumber>1</ArticleNumber>
<ExternalStockLocationId>3</ExternalStockLocationId>
<Quantity>2</Quantity>
</ExternalStockQuantityRequest>
<ExternalStockQuantityRequest>
<ArticleNumber>1</ArticleNumber>
<ExternalStockLocationId>3</ExternalStockLocationId>
<Quantity>2</Quantity>
</ExternalStockQuantityRequest>
</ArrayOfExternalStockQuantityRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StockTransferPostResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Success | boolean |
None. |
|
| WmsId | integer |
None. |
|
| Messages | Collection of StockTransferMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.