buezli.app API

/2026-07-14/recurring_invoice_templates

RecurringInvoiceTemplate

Recurring invoice templates define when invoices are generated and which customer, terms and line items they use.

Endpoints

GET /2026-07-14/recurring_invoice_templates List records

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/recurring_invoice_templates?page=1&limit=50"
GET /2026-07-14/recurring_invoice_templates/:id Retrieve one record

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/recurring_invoice_templates/123"

Fields

FieldTypeDescription
idintegerUnique identifier for the resource.
created_atdatetimeTimestamp when the resource was created.
updated_atdatetimeTimestamp when the resource was last updated.
client_idintegerID of the client that receives generated invoices.
namestringName used to identify the recurring template in buezli.app.
currencystringISO 4217 currency code used for generated invoices.
localestringLanguage code used for generated customer-facing documents.
subjectstringCustomer-facing subject copied to generated invoices.
notesstringFree-form notes copied to generated invoices.
discount_ratedecimalPercentage discount applied to generated invoices.
tax_ratedecimalDefault tax percentage inherited by generated invoice lines without an override.
interval_unitstringCalendar unit used by the recurring schedule.
interval_countintegerNumber of interval units between generated invoices.
starts_ondateFirst date covered by the recurring schedule.
next_issue_ondateNext date on which the template should generate an invoice.
ends_ondateDate after which the recurring schedule stops.
due_daysintegerNumber of days after issue that generated invoices become due.
paused_atdatetimeTimestamp when recurring invoice generation was paused.
archived_atdatetimeTimestamp when the template was archived, or null when active.

Relationships

client

Returned as an ID. Add expand=client to include the related record.

line_items

Included in every response.