Xero
Bank Feed Connections

Xero Bank Feed Connections API

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)

Supported Operations for Xero Bank Feed Connections

List, Create, Get, Delete operations available through our unified API

list
get
create
update
delete

Supported Fields

8 fields

Fields available for Xero Bank Feed Connections

idbank_account_typesource_account_idtarget_account_idtarget_account_nametarget_account_numbercurrencycountry

API Model Preview

Sample 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
}

Quick Start Example

Start syncing Xero bank feed connections in minutes

Node.js
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 data

Xero SDKs

Build Xero integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up