Short answer: You can list recurly invoices in Recurly by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Recurly List Recurly Invoices action to a workflow, map its 3 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 |
|---|---|---|---|
Account ID or Code account_id | string | Optional | Filter invoices to a single account (use code-<your_code> for code lookup) |
State state | options | Optional | Invoice state filter |
Limit limit | number | Optional | Max invoices to return |
{"account_id": "{{trigger.account_id}}","state": "{{trigger.state}}","limit": "{{trigger.limit}}"}
{"data": [{"id": "inv_123","state": "paid","total": 49,"number": "1001","account": {"id": "acct_abc123","code": "user_123"},"currency": "USD","created_at": "2026-04-15T10:00:00Z"}],"has_more": false}
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.