POST SupplierTransactionListing/GetSupplierTransactionListingReportingDetail
Gets the Supplier Transaction Listing.
Request Information
URI Parameters
None.
Body Parameters
The Supplier Transaction Listing request.
Supplier Transaction Listing Request Model| Name | Type | Additional information | Description |
|---|---|---|---|
| FromSupplier | string |
None. |
The Supplier Name to start the range at. |
| ToSupplier | string |
None. |
The Supplier 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. |
|
| ShowOpeningBalance | bool |
None. |
|
| UseForeignCurrency | bool |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromSupplier": "sample string 1",
"ToSupplier": "sample string 2",
"FromCategory": "sample string 3",
"ToCategory": "sample string 4",
"FromDate": "2025-12-21",
"ToDate": "2025-12-21",
"IncludeActive": true,
"IncludeInactive": true,
"TransactionType": "sample string 9",
"ShowOpeningBalance": true,
"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-12-21T00:00:00Z",
"OpeningBalance": 5.0,
"ClosingBalanceDate": "2025-12-21T00:00:00Z",
"ClosingBalance": 7.0
},
{
"ID": 1,
"Name": "sample string 2",
"CurrencySymbol": "sample string 3",
"OpeningBalanceDate": "2025-12-21T00:00:00Z",
"OpeningBalance": 5.0,
"ClosingBalanceDate": "2025-12-21T00:00:00Z",
"ClosingBalance": 7.0
}
]