Short answer: You can create invoice in Xero by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Xero Create Invoice action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Contact ID contactId | string | Required | Contact ID |
Line Item Description description | string | Required | Line Item Description |
Quantity quantity | number | Required | Quantity |
Unit Amount unitAmount | number | Required | Unit Amount |
Due Date dueDate | date | Required | Due Date. (date/time) |
{"contactId": "{{trigger.contactId}}","description": "{{trigger.description}}","quantity": "{{trigger.quantity}}","unitAmount": "{{trigger.unitAmount}}","dueDate": "{{trigger.dueDate}}"}
{"Invoices": [{"Total": 100,"Status": "DRAFT","InvoiceID": "inv123","InvoiceNumber": "INV-0001"}]}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.