POST api/AccountStatement/GetAccountStatement
Request Information
URI Parameters
None.
Body Parameters
AccountStatementRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RowsPerPage | integer |
None. |
|
| PageNumber | integer |
None. |
|
| FromDate | string |
None. |
|
| ToDate | string |
None. |
|
| Type | string |
None. |
|
| txtSearch | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RowsPerPage": 1,
"PageNumber": 2,
"FromDate": "sample string 3",
"ToDate": "sample string 4",
"Type": "sample string 5",
"txtSearch": "sample string 6"
}
application/xml, text/xml
Sample:
<AccountStatementRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PozitivePaymentAPI.Models"> <FromDate>sample string 3</FromDate> <PageNumber>2</PageNumber> <RowsPerPage>1</RowsPerPage> <ToDate>sample string 4</ToDate> <Type>sample string 5</Type> <txtSearch>sample string 6</txtSearch> </AccountStatementRequest>
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. |