Dataset: Bank Account Transactions

Dataset name: ds_bank_account_transactions

Description

Bank account transactions

Fields in this dataset

Name Field Name Description Field Type Field Example
Transactions Date ba_transaction_date The date of the transaction date 29222
Transactions Description ba_transaction_description The transaction description text Salary
Transactions Transaction Type ba_transaction_type The type of transaction text Direct Debit
Transactions Value ba_transaction_value The value of the transaction currency 111.11
Currency Code ba_transaction_value_currency_code Currency code for the transaction text GBP
Bank Account Transaction ID id The primary identifier for this record. number 5
Bank Account Transaction Instance instance The instance this transaction relates to. number 8
Bank Account Transaction Source source The source of the data - user or connection. text

Making an API request for this Dataset

Example Request to the Sandbox Server

http://sbx-api.mydex.org/api/pds/transaction/UID.json
  ?key=KEY
  &api_key=API_KEY
  &con_id=CON_ID
  &source_type=connection
  &dataset=ds_bank_account_transactions
  &instance=N

Replace the following with your own details: UID KEY, API_KEY, CON_ID and instance N.

Replace sbx-api with api when making a connection to a real member on the production server (must be authenticated).

To return the data in XML, change UID.json to UID.xml.

Example Response

A response to this API request will be structured as follows.

{
  "5": {
    "id": "5",
    "ds_id": "5",
    "ba_transaction_date": "29222",
    "ba_transaction_description": "Salary",
    "ba_transaction_type": "Direct Debit",
    "ba_transaction_value": "111.11",
    "ba_transaction_value_currency_code": "GBP"
  }
}