POST api/StockMovement/Search
Request Information
URI Parameters
None.
Body Parameters
StockMovementSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemGroupIds | Collection of integer |
None. |
|
| ItemIds | Collection of integer |
None. |
|
| ItemClassificationIds | Collection of integer |
None. |
|
| ItemBinIds | Collection of integer |
None. |
|
| skipZeroQty | boolean |
None. |
|
| FromStock | integer |
None. |
|
| ToStock | integer |
None. |
|
| orderBy | string |
None. |
|
| skip | integer |
None. |
|
| take | integer |
None. |
|
| desc | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ItemGroupIds": [
1,
1
],
"ItemIds": [
1,
1
],
"ItemClassificationIds": [
1,
1
],
"ItemBinIds": [
1,
1
],
"skipZeroQty": true,
"FromStock": 1,
"ToStock": 1,
"orderBy": "sample string 2",
"skip": 1,
"take": 1,
"desc": true
}
application/xml, text/xml
Sample:
<StockMovementSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Web.Api.ViewModel">
<FromStock>1</FromStock>
<ItemBinIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:long>1</d2p1:long>
<d2p1:long>1</d2p1:long>
</ItemBinIds>
<ItemClassificationIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:long>1</d2p1:long>
<d2p1:long>1</d2p1:long>
</ItemClassificationIds>
<ItemGroupIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:long>1</d2p1:long>
<d2p1:long>1</d2p1:long>
</ItemGroupIds>
<ItemIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:long>1</d2p1:long>
<d2p1:long>1</d2p1:long>
</ItemIds>
<ToStock>1</ToStock>
<desc>true</desc>
<orderBy>sample string 2</orderBy>
<skip>1</skip>
<skipZeroQty>true</skipZeroQty>
<take>1</take>
</StockMovementSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |