List all bankfeedtransactions

GET/accounting/{connection_id}/bankfeedtransaction

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
bankfeedaccount_idstring
The BankfeedAccount ID to filter by
contact_idstring
The contact ID to filter by (reference to AccountingContact)
account_idstring
The account ID to filter by (reference to AccountingAccount)
org_idstring
The org ID to filter by (reference to AccountingOrganization)
start_gtestring
The start date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
end_ltstring
The end date to filter by (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Returns

idstring
created_atdate
creation timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
last-update timestamp, in ISO 8601 format and UTC (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
organization_idstring
ref -> accounting Organization this record belongs to
bankfeedaccount_idstring
ref -> BankfeedAccount this transaction belongs to
transaction_atdate
when the transaction occurred (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
posted_atdate
when it posted / cleared (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
amountnumber
transaction amount (positive; direction from type)
type enum
Valid values:
"DEBIT"
"CREDIT"
direction: DEBIT, CREDIT
bank_categorystring
the bank's own category label
descriptionstring
bank memo / statement text
merchant_namestring
counterparty as reported by the bank
is_pendingboolean
true if not yet cleared
referencestring
bank reference or check number
currencystring
ISO 4217
contact_idstring
matched vendor/customer once reconciled (reference to AccountingContact)
account_idstring
GL account once categorized (reference to AccountingAccount)
category_idsstring array
dimension refs -> AccountingCategory (class/department/location)
const options = {
  method: 'GET',
  url: 'https://api.unified.to/accounting/5de520f96e439b002043d8dc/bankfeedtransaction',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-08-14T00:03:36.204Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    bankfeedaccount_id: '',
    contact_id: '',
    account_id: '',
    org_id: '',
    start_gte: '',
    end_lt: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?