Skip to main content
PATCH
/
invoice-recurring
/
{template_id}
Update a recurring template's status or schedule
curl --request PATCH \
  --url https://api.app.lastaccountingcompany.com/portal/invoice-recurring/{template_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer_id": "<string>",
  "name": "<string>",
  "cadence_months": 123,
  "next_issue_date": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Portal API key minted in portal Settings → API access. Scope read or write; pinned to one company. Send as Authorization: Bearer lac_sk_....

Path Parameters

template_id
string
required

Body

application/json
customer_id
string

Target company. Optional for API keys.

name
string
status
enum<string>
Available options:
active,
paused,
archived
cadence_months
integer

Months between issues.

next_issue_date
string

Next issue date, YYYY-MM-DD.

Response

Updated template.

The response is of type object.