Transactions
Query for bank account transactions.
GET Transactions
POST
https://api.finqware.com/v1/transactions/get
Get transaction data related to a certain credentials_id.
Request Body
Name | Type | Description |
---|---|---|
client_id* | string | An identifier for your tenant app. |
client_secret* | string | A tenant app secret. |
credentials_id* | string | A pointer to a consent record created via an onboarding session. |
access_token* | string | An authorization key for this particular consent record. |
tenant_user_id* | string | A unique identifier for your end-user. |
filter | object | A filter object. Criteria in the table below. |
Filter element | Type | Info |
---|---|---|
account_id | string | finqware id of the bank account |
currency | string | eg: RON |
status | string | eg: booked |
credit_debit_indicator | string | debit | credit |
category | string | eg: shopping |
eq | decimal | amount equal to |
gte | decimal | amount >= than |
gt | decimal | amount > than |
lte | decimal | amount <= than |
lt | decimal | amount < than |
booking_date_eq | utc_datetime | date equal to |
booking_date_gte | utc_datetime | date later or equal to |
booking_date_gt | utc_datetime | later than |
booking_date_lte | utc_datetime | earlier or equal to |
booking_date_lt | utc_datetime | earlier than |
Last updated