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
NameTypeAdditional informationDescription
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": "2024-04-19",
  "ToDate": "2024-04-19",
  "IncludeActive": true,
  "IncludeInactive": true,
  "TransactionType": "sample string 9",
  "UseForeignCurrency": true
}

Response Information

Resource Description

Collection of Transaction Listing
NameTypeAdditional informationDescription
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": "2024-04-19T00:00:00Z",
    "OpeningBalance": 5.0,
    "ClosingBalanceDate": "2024-04-19T00:00:00Z",
    "ClosingBalance": 7.0
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "CurrencySymbol": "sample string 3",
    "OpeningBalanceDate": "2024-04-19T00:00:00Z",
    "OpeningBalance": 5.0,
    "ClosingBalanceDate": "2024-04-19T00:00:00Z",
    "ClosingBalance": 7.0
  }
]