GET api/Report/GetAllReportPayment?startDate={startDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | string |
Required |
|
| endDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReportPaymentDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | string |
None. |
|
| businessName | string |
None. |
|
| paymentTime | date |
None. |
|
| permitStaus | string |
None. |
|
| amount | string |
None. |
|
| amountIRS | string |
None. |
|
| type | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"orderId": "sample string 1",
"businessName": "sample string 2",
"paymentTime": "2026-09-04T02:50:41.2171562-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-04T02:50:41.2171562-07:00",
"permitStaus": "sample string 3",
"amount": "sample string 4",
"amountIRS": "sample string 5",
"type": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfReportPaymentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Application.DTOs">
<ReportPaymentDTO>
<amount>sample string 4</amount>
<amountIRS>sample string 5</amountIRS>
<businessName>sample string 2</businessName>
<orderId>sample string 1</orderId>
<paymentTime>2026-09-04T02:50:41.2171562-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-04T02:50:41.2171562-07:00</paymentTime>
<permitStaus>sample string 3</permitStaus>
<type>sample string 6</type>
</ReportPaymentDTO>
</ArrayOfReportPaymentDTO>