Actions & Endpoints
Introduction
The Xero Integration with Rewst delivers a robust set of actions and endpoints for interacting with Xero. Below is a summary of each section, highlighting the diverse capabilities and opportunities provided through the Xero Integration:
Actions
Accounts
List Accounts
GET
xero.com/api.xro/2.0/Accounts
List all accounts
Get Account
GET
xero.com/api.xro/2.0/Accounts/{account_id}
Get account by ID
Create Account
PUT
xero.com/api.xro/2.0/Accounts
Create an account
Update Account
POST
xero.com/api.xro/2.0/Accounts/{account_id}
Update an account
Employees
List Employees
GET
xero.com/api.xro/2.0/Employees
List all employees
Get Employee
GET
xero.com/api.xro/2.0/Employees/{employee_id}
Get a specific employee
Create Employee
POST
xero.com/api.xro/2.0/Employees
Create a new employee
Update Employee
GET
xero.com/api.xro/2.0/Employees/{employee_id}
Update an existing employee
Generic Request
Xero API Request
GET
xero.com/<url_path>
Generic action for making authenticated requests against the Xero API
Invoices
List Invoices
GET
xero.com/api.xro/2.0/Invoices
List all invoices
Get Invoice
GET
xero.com/api.xro/2.0/Invoices/{invoice_id_or_number}
Get a specific invoice
Create Invoice
POST
xero.com/api.xro/2.0/Invoices
Create a new invoice
Delete/Void Invoice
POST
xero.com/api.xro/2.0/Invoices/{invoice_id_or_number}
Delete/Void an existing invoice
Update Invoice
POST
xero.com/api.xro/2.0/Invoices/{invoice_id_or_number}
Update an existing invoice
Last updated