Loading...
Loading...
Xero integration. Manage accounting data, records, and workflows. Use when the user wants to interact with Xero data.
npx skill4agent add membranedev/application-skills xeromembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search xero --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Invoices | list-invoices | Retrieve a list of invoices from Xero with optional filtering and pagination |
| List Contacts | list-contacts | Retrieve a list of contacts from Xero with optional filtering and pagination |
| List Accounts | list-accounts | Retrieve a list of accounts (chart of accounts) from Xero |
| List Bank Transactions | list-bank-transactions | Retrieve a list of bank transactions from Xero |
| List Purchase Orders | list-purchase-orders | Retrieve a list of purchase orders from Xero |
| List Items | list-items | Retrieve a list of items (products/services) from Xero |
| Get Invoice | get-invoice | Retrieve a single invoice by ID from Xero |
| Get Contact | get-contact | Retrieve a single contact by ID from Xero |
| Get Account | get-account | Retrieve a single account by ID |
| Get Bank Transaction | get-bank-transaction | Retrieve a single bank transaction by ID |
| Get Purchase Order | get-purchase-order | Retrieve a single purchase order by ID |
| Get Item | get-item | Retrieve a single item by ID |
| Create Invoice | create-invoice | Create a new invoice in Xero (sales invoice or bill) |
| Create Contact | create-contact | Create a new contact in Xero |
| Create Bank Transaction | create-bank-transaction | Create a new bank transaction (spend or receive money) |
| Create Purchase Order | create-purchase-order | Create a new purchase order in Xero |
| Create Item | create-item | Create a new item (product/service) in Xero |
| Update Invoice | update-invoice | Update an existing invoice in Xero |
| Update Contact | update-contact | Update an existing contact in Xero |
| Update Purchase Order | update-purchase-order | Update an existing purchase order in Xero |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY