List all bankfeedaccounts
GET/accounting/{connection_id}/bankfeedaccount
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
org_idstring
The org ID to filter by (reference to AccountingOrganization)
type enum
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
namestring
account nickname / source name
bank_namestring
bank / institution name
account_numberstring
full account number where available
account_number_last4string
last-4 when the full number isn't returned
routing_numberstring
bank routing number
account_type enum
Valid values:
"CHECKING"
"SAVINGS"
"CREDIT_CARD"
"LOAN"
"OTHER"
CHECKING, SAVINGS, CREDIT_CARD, LOAN, OTHER
account_idstring
ref -> AccountingAccount: the target GL account the feed posts into (reference to AccountingAccount)
currencystring
ISO 4217 currency of the account
balancenumber
current balance of the source account
feed_start_atdate
date the feed begins delivering transactions (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status enum
Valid values:
"ACTIVE"
"INACTIVE"
feed state: ACTIVE, INACTIVE
const options = {
method: 'GET',
url: 'https://api.unified.to/accounting/5de520f96e439b002043d8dc/bankfeedaccount',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-08-14T00:03:36.204Z',
sort: 'updated_at',
order: 'asc',
query: '',
org_id: '',
type: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know