Sync bank feed connections data with Xero through Apideck's unified API. One integration, instant access.
In Apideck, this resource is called Bank Feed Accounts (API: bank-feed-accounts)
List, Create, Get, Delete operations available through our unified API
Fields available for Xero Bank Feed Connections
idbank_account_typesource_account_idtarget_account_idtarget_account_nametarget_account_numbercurrencycountrySample response structure for bank feed connections
{
"id": "12345",
"bank_account_type": 10,
"source_account_id": "12345",
"target_account_id": "12345",
"target_account_name": "Example Target Account Name",
"target_account_number": 10,
"currency": "USD",
"country": 10
}Start syncing Xero bank feed connections in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List bank feed connections from Xero
const result = await apideck.accounting.bankFeedAccounts.list({
serviceId: 'xero'
})
for await (const page of result) {
console.log(page)
}
// Returns unified bank feed connections dataWe build and maintain connectors, so you don't have to. View our full list of Accounting connectors.
Missing a connector? We're able to add new connectors.
Build Xero integrations in your favorite language with our official SDKs.
Build Xero integrations with the official Node.js SDK.
Build Xero integrations with the official TypeScript SDK.
Build Xero integrations with the official PHP SDK.
Build Xero integrations with the official .NET.
Build Xero integrations with the official Python SDK.
Build Xero integrations with the official Java SDK.
Build Xero integrations with the official Go SDK.