List invoices (with filtering)
documentedList invoices with filter options.
GET /InvoicesInvoicesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.xero.com/api.xro/2.0/Invoices?where={{$where}}&order={{$order}}&IDs={{$ids}}&InvoiceNumbers={{$invoice_numbers}}&ContactIDs={{$contact_ids}}&Statuses={{$statuses}}&page={{$page}}&includeArchived={{$include_archived}}&createdByMyApp={{$created_by_my_app}}&unitdp={{$unitdp}}&summaryOnly={{$summary_only}}&pageSize={{$page_size}}&searchTerm={{$search_term}}" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "xero-tenant-id: {{$tenant_id}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "If-Modified-Since: {{$if_modified_since}}"