Xero Accounting API - Get Tenant Connections
@sergio
code:
data:privatelast updated:3 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 800,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
xero_accounting_api_get_tenant_connections
Gets the tenants connections the user is authorized to access
auth
(auths.xero_accounting_api)
code
async (params, auths) => {
1
2
3
4
5
6
7
8
9
10
}
11
//See the API docs: https://developer.xero.com/documentation/oauth2/auth-flow
//Step 5. Check the tenants you're authorized to access

return await require("@pipedreamhq/platform").axios(this, {
  url: `https://api.xero.com/connections`,
  headers: {
    Authorization: `Bearer ${auths.xero_accounting_api.oauth_access_token}`,
  },
})