POST api/Report/GetReportPayment
Request Information
URI Parameters
None.
Body Parameters
GridAdminReportPaymentRequestDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | string |
None. |
|
| endDate | string |
None. |
|
| timePeriod | string |
None. |
|
| search | string |
None. |
|
| sort | string |
None. |
|
| pageSize | integer |
None. |
|
| page | integer |
None. |
|
| descending | boolean |
None. |
|
| userId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"startDate": "sample string 1",
"endDate": "sample string 2",
"timePeriod": "sample string 3",
"search": "sample string 4",
"sort": "sample string 5",
"pageSize": 6,
"page": 7,
"descending": true,
"userId": "sample string 9"
}
application/xml, text/xml
Sample:
<GridAdminReportPaymentRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs"> <descending>true</descending> <page>7</page> <pageSize>6</pageSize> <search>sample string 4</search> <sort>sample string 5</sort> <userId>sample string 9</userId> <endDate>sample string 2</endDate> <startDate>sample string 1</startDate> <timePeriod>sample string 3</timePeriod> </GridAdminReportPaymentRequestDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ListReportPaymentDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| listOrder | Collection of ReportPaymentDTO |
None. |
|
| page | string |
None. |
|
| total | string |
None. |
|
| totalPages | string |
None. |
|
| pageSize | string |
None. |
|
| sumAmount | string |
None. |
|
| timePeriod | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"listOrder": [
{
"orderId": "sample string 1",
"businessName": "sample string 2",
"paymentTime": "2026-09-03T12:09:53.1427767-07:00",
"permitStaus": "sample string 3",
"amount": "sample string 4",
"amountIRS": "sample string 5",
"type": "sample string 6"
},
{
"orderId": "sample string 1",
"businessName": "sample string 2",
"paymentTime": "2026-09-03T12:09:53.1427767-07:00",
"permitStaus": "sample string 3",
"amount": "sample string 4",
"amountIRS": "sample string 5",
"type": "sample string 6"
}
],
"page": "sample string 1",
"total": "sample string 2",
"totalPages": "sample string 3",
"pageSize": "sample string 4",
"sumAmount": "sample string 5",
"timePeriod": "sample string 6"
}
application/xml, text/xml
Sample:
<ListReportPaymentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
<listOrder>
<ReportPaymentDTO>
<amount>sample string 4</amount>
<amountIRS>sample string 5</amountIRS>
<businessName>sample string 2</businessName>
<orderId>sample string 1</orderId>
<paymentTime>2026-09-03T12:09:53.1427767-07:00</paymentTime>
<permitStaus>sample string 3</permitStaus>
<type>sample string 6</type>
</ReportPaymentDTO>
<ReportPaymentDTO>
<amount>sample string 4</amount>
<amountIRS>sample string 5</amountIRS>
<businessName>sample string 2</businessName>
<orderId>sample string 1</orderId>
<paymentTime>2026-09-03T12:09:53.1427767-07:00</paymentTime>
<permitStaus>sample string 3</permitStaus>
<type>sample string 6</type>
</ReportPaymentDTO>
</listOrder>
<page>sample string 1</page>
<pageSize>sample string 4</pageSize>
<sumAmount>sample string 5</sumAmount>
<timePeriod>sample string 6</timePeriod>
<total>sample string 2</total>
<totalPages>sample string 3</totalPages>
</ListReportPaymentDTO>