Xero
Organisations

Xero Organisations API

Sync organisations data with Xero through Apideck's unified API. One integration, instant access.

In Apideck, this resource is called Company Info (API: company-info)

Supported Operations for Xero Organisations

Get operation available through our unified API

list
get
create
update
delete

Supported Fields

12 fields

Fields available for Xero Organisations

idcompany_namestatuslegal_namecountrysales_tax_numbersales_tax_enabledcurrencyfiscal_year_start_monthaddressesphone_numberscreated_at

API Model Preview

Sample response structure for organisations

{
  "id": "12345",
  "company_name": "Example Company Name",
  "status": "active",
  "legal_name": "Example Legal Name",
  "country": 10,
  "sales_tax_number": 10,
  "sales_tax_enabled": "string",
  "currency": "USD",
  "fiscal_year_start_month": "string",
  "addresses": [
    {
      "id": "123",
      "type": "primary",
      "string": "25 Spring Street, Blackburn, VIC 3130",
      "name": "HQ US",
      "line1": "25 Spring Street",
      "line2": "Suite 100",
      "city": "Blackburn",
      
  ...

Quick Start Example

Start syncing Xero organisations 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 organisations from Xero
const result = await apideck.accounting.companyInfo.list({
  serviceId: 'xero'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified organisations data

Xero SDKs

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

Launch accounting integrations in weeks, not months

Sign Up