POST api/StockReport/GetAll
Request Information
URI Parameters
None.
Body Parameters
StockReportLister| Name | Description | Type | Additional information |
|---|---|---|---|
| List | Collection of StockReport |
None. |
|
| SearchCriteria | StockReport |
None. |
|
| Pagination | Pagination |
None. |
Request Formats
application/json, text/json
Sample:
{
"List": [
{
"Id": 1,
"Category": "sample string 2",
"Item": "sample string 3",
"FactoryStock": "sample string 4",
"GodownStock": "sample string 5"
},
{
"Id": 1,
"Category": "sample string 2",
"Item": "sample string 3",
"FactoryStock": "sample string 4",
"GodownStock": "sample string 5"
}
],
"SearchCriteria": {
"Id": 1,
"Category": "sample string 2",
"Item": "sample string 3",
"FactoryStock": "sample string 4",
"GodownStock": "sample string 5"
},
"Pagination": {
"PageSize": 1,
"Take": 2,
"Skip": 3,
"CurrentPage": 4,
"TotalPage": 5,
"TotalRecord": 6
}
}
application/xml, text/xml
Sample:
<StockReportLister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IKimWebService.Domain">
<List>
<StockReport>
<Category>sample string 2</Category>
<FactoryStock>sample string 4</FactoryStock>
<GodownStock>sample string 5</GodownStock>
<Id>1</Id>
<Item>sample string 3</Item>
</StockReport>
<StockReport>
<Category>sample string 2</Category>
<FactoryStock>sample string 4</FactoryStock>
<GodownStock>sample string 5</GodownStock>
<Id>1</Id>
<Item>sample string 3</Item>
</StockReport>
</List>
<Pagination>
<CurrentPage>4</CurrentPage>
<PageSize>1</PageSize>
<Skip>3</Skip>
<Take>2</Take>
<TotalPage>5</TotalPage>
<TotalRecord>6</TotalRecord>
</Pagination>
<SearchCriteria>
<Category>sample string 2</Category>
<FactoryStock>sample string 4</FactoryStock>
<GodownStock>sample string 5</GodownStock>
<Id>1</Id>
<Item>sample string 3</Item>
</SearchCriteria>
</StockReportLister>
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. |