GET api/Stock/GetDailySettlementPage?SectionInID={SectionInID}&PageIndex={PageIndex}&PageSize={PageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionInID | integer |
None. |
|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
PageModelOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Success | boolean |
None. |
|
| Msg | string |
None. |
|
| Page | integer |
None. |
|
| PageCount | integer |
None. |
|
| DataCount | integer |
None. |
|
| PageSize | integer |
None. |
|
| Response | Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 200,
"Success": true,
"Msg": "sample string 3",
"Page": 4,
"PageCount": 5,
"DataCount": 6,
"PageSize": 7,
"Response": [
{},
{}
]
}
application/xml, text/xml
Sample:
<PageModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DY.Entity">
<DataCount>6</DataCount>
<Msg>sample string 3</Msg>
<Page>4</Page>
<PageCount>5</PageCount>
<PageSize>7</PageSize>
<Response xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</Response>
<Status>200</Status>
<Success>true</Success>
</PageModelOfanyType>