Get a recurrence by ID
Path parameters
Headers
Bearer authentication of the form Bearer <token>, where token is your auth token.
Response
Controls how invoices are processed when generated:
- “draft”: Creates invoices in draft status, requiring manual review, issuing, and sending
- “issue”: Automatically issues invoices but requires manual sending
- “issue_and_send”: Fully automates the process (creates, issues, and sends invoices)
Default: “issue” (or “issue_and_send” if subject_text and body_text are provided)
Note: When using “issue_and_send”, both subject_text and body_text must be provided.
The date when the first invoice will be created, in the yyyy-mm-dd
format. Cannot be a past date. Subsequent invoice dates will be calculated based on start_date
, frequency
, and interval
.
Deprecated, use start_date
instead
Deprecated, use start_date
instead
Deprecated, use start_date
instead
The end date of the recurring invoice, in the yyyy-mm-dd
format. The end date is inclusive, that is, the last invoice will be created on this date if the last occurrence falls on this date. end_date
is mutually exclusive with max_occurrences
. Either end_date
or max_occurrences
must be specified.
How many times the recurring invoice will be created. The recurrence will stop after this number is reached. max_occurrences
is mutually exclusive with end_date
. Either max_occurrences
or end_date
must be specified.
An object containing the recipients (To, CC, BCC) of the recurring invoices. Can be omitted if the base invoice has the counterpart contact email specified in the counterpart_contact.email
field.
Deprecated, use end_date
instead
Deprecated, use end_date
instead