POST CustomerTransactionListing/GetCustomerTransactionListingReportingDetail
Gets the Customer Transaction Listing.
Request Information
URI Parameters
None.
Body Parameters
The Customer Transaction Listing request.
Customer Transaction Listing Request Model| Name | Type | Additional information | Description |
|---|---|---|---|
| FromCustomer | string |
None. |
The Customer Name to start the range at. |
| ToCustomer | string |
None. |
The Customer Name to stop the range at. |
| FromCategory | string |
None. |
The Category Name to start the range at. |
| ToCategory | string |
None. |
The Category Name to stop the range at. |
| FromDate | date |
None. |
Gets or sets From Date. |
| ToDate | date |
None. |
Gets or sets To Date. |
| IncludeActive | bool |
None. |
|
| IncludeInactive | bool |
None. |
|
| TransactionType | string |
None. |
|
| UseForeignCurrency | bool |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromCustomer": "sample string 1",
"ToCustomer": "sample string 2",
"FromCategory": "sample string 3",
"ToCategory": "sample string 4",
"FromDate": "2025-10-29",
"ToDate": "2025-10-29",
"IncludeActive": true,
"IncludeInactive": true,
"TransactionType": "sample string 9",
"UseForeignCurrency": true
}
Response Information
Resource Description
Collection of Transaction Listing| Name | Type | Additional information | Description |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| CurrencySymbol | string |
None. |
|
| OpeningBalanceDate | date |
None. |
|
| OpeningBalance | decimal |
None. |
|
| ClosingBalanceDate | date |
None. |
|
| ClosingBalance | decimal |
None. |
|
| Transactions | Collection of Transaction Listing Detail |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"CurrencySymbol": "sample string 3",
"OpeningBalanceDate": "2025-10-29T00:00:00Z",
"OpeningBalance": 5.0,
"ClosingBalanceDate": "2025-10-29T00:00:00Z",
"ClosingBalance": 7.0
},
{
"ID": 1,
"Name": "sample string 2",
"CurrencySymbol": "sample string 3",
"OpeningBalanceDate": "2025-10-29T00:00:00Z",
"OpeningBalance": 5.0,
"ClosingBalanceDate": "2025-10-29T00:00:00Z",
"ClosingBalance": 7.0
}
]