POST BankAccountTransactionListing/GetBankAccountTransactionListingReportingDetail

Gets the Bank Account Transaction Listing.

Request Information

URI Parameters

None.

Body Parameters

The Bank Account Transaction Listing request.

Bank Account Transaction Listing Request Model
NameTypeAdditional informationDescription
FromBankAccount string

None.

The Bank Account Name to start the range at.

ToBankAccount string

None.

The Bank Account Name to stop the range at.

FromAccount string

None.

The Account Name to start the range at.

ToAccount string

None.

The Account Name to stop the range at.

FromBankAccountCategory string

None.

The Bank Account Category Name to start the range at.

ToBankAccountCategory string

None.

The Bank Account Category Name to stop the range at.

FromDate date

None.

Gets or sets From Date.

ToDate date

None.

Gets or sets To Date.

Active bool

None.

Inactive bool

None.

TransactionType string

None.

UseForeignCurrency bool

None.

Request Formats

application/json, text/json

Sample:
{
  "FromBankAccount": "sample string 1",
  "ToBankAccount": "sample string 2",
  "FromAccount": "sample string 3",
  "ToAccount": "sample string 4",
  "FromBankAccountCategory": "sample string 5",
  "ToBankAccountCategory": "sample string 6",
  "FromDate": "2024-03-29",
  "ToDate": "2024-03-29",
  "Active": true,
  "Inactive": true,
  "TransactionType": "sample string 11",
  "UseForeignCurrency": true
}

Response Information

Resource Description

Collection of Bank Account Transaction Listing
NameTypeAdditional informationDescription
ID integer

None.

OpeningBalanceDate date

None.

OpeningBalance decimal

None.

ClosingBalanceDate date

None.

ClosingBalance decimal

None.

Transactions Collection of Bank Account Transaction Listing Detail

None.

Name string

None.

CurrencySymbol string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "OpeningBalanceDate": "2024-03-29T00:00:00Z",
    "OpeningBalance": 3.0,
    "ClosingBalanceDate": "2024-03-29T00:00:00Z",
    "ClosingBalance": 5.0,
    "Name": "sample string 6",
    "CurrencySymbol": "sample string 7"
  },
  {
    "ID": 1,
    "OpeningBalanceDate": "2024-03-29T00:00:00Z",
    "OpeningBalance": 3.0,
    "ClosingBalanceDate": "2024-03-29T00:00:00Z",
    "ClosingBalance": 5.0,
    "Name": "sample string 6",
    "CurrencySymbol": "sample string 7"
  }
]