Recurring invoices

Learn how to create and manage recurring invoices in Monite.

Overview

With Monite, you can set up monthly recurring invoices to bill an entity’s customers the same amount every month. This is useful, for example, when implementing subscriptions or monthly service bills.

Recurring invoices can be issued on the first or last day of the month. They can be configured to be automatically sent to the predefined recipients.

Create a recurring invoice

1. Create a draft invoice

Start by creating the base invoice that will be used as the template for recurring invoices. You will need the invoice id for use in subsequent API calls. Keep this invoice in the draft status.

Verify the invoice data to make sure the invoice can be issued successfully.

Each invoice can have only one recurrence schedule associated with it.

2. Set up the recurrence

Next, configure the recurrence schedule for the base invoice. Call POST /recurrences and specify the base invoice ID, start month and year, end month and year, and the day of month (first or last) on which the recurring invoices will be issued.

To enable automatic invoice sending, also provide the recipients list and the subject_text and body_text for the email message.

1curl -X POST 'https://api.sandbox.monite.com/v1/recurrences' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "invoice_id": "8beb7faa-6851-44c8-9fb9-24a94ca30343",
8 "start_month": 8,
9 "start_year": 2024,
10 "end_month": 10,
11 "end_year": 2024,
12 "day_of_month": "first_day",
13
14 // Include these to enable automatic sending
15 "subject_text": "New invoice #{invoice_number}",
16 "body_text": "Dear {contact_name},\n\nThank you for your business!\nPlease pay the balance of {amount_due} (invoice #{invoice_number}) by {due_date}.\n\nFor any questions or concerns, please don’t hesitate to get in touch with us at {entity_email}. We look forward to serving you again and wish you all the best!",
17 "recipients": {
18 "to": ["customer@example.org"],
19 "cc": ["support@entity.example.com", "sales@entity.example.com"],
20 "bcc": ["exec@entity.example.com"]
21 }
22 }'

Notes:

  • Months - start_month and end_month - are represented numerically, with 1 for January and 12 for December.

  • end_month and end_year are required for the recurrence schedule. Currently, invoices cannot be infinitely recurring. However, you can extend a recurrence when it is reaching its end date.

  • The first recurring invoice will be issued on the next matching date that follows the start date or the current date depending on whichever one comes later.

    For example, if the current date is September 8 and you create a recurrence with September as the start_month and day_of_month = “first_day”, the first recurring invoice will be issued on October 1. No invoice will be issued in September because September 1 has already passed.

When a recurrence schedule is created, the status of the base invoice is changed from "draft" to "recurring". Monite also calculates the scheduled issue dates for all instances of the recurring invoice, and returns these dates in the iterations list in the response from POST /recurrences:

1{
2 "id": "b17d34e3-63c0-4c44-a39c-e09a162ef3b4",
3 "created_at": "2024-07-11T09:25:56.792883+00:00",
4 "updated_at": "2024-07-11T09:25:56.792892+00:00",
5 "invoice_id": "8beb7faa-6851-44c8-9fb9-24a94ca30343",
6 "start_month": 8,
7 "start_year": 2024,
8 "end_month": 10,
9 "end_year": 2024,
10 "day_of_month": "first_day",
11 "iterations": [
12 {
13 "issue_at": "2024-08-01",
14 "issued_invoice_id": null,
15 "status": "pending",
16 "iteration": 1
17 },
18 {
19 "issue_at": "2024-09-01",
20 "issued_invoice_id": null,
21 "status": "pending",
22 "iteration": 2
23 },
24 {
25 "issue_at": "2024-10-01",
26 "issued_invoice_id": null,
27 "status": "pending",
28 "iteration": 3
29 }
30 ],
31 ...
32 "status": "active",
33 "current_iteration": 1
34}

The issued_invoice_id fields in the iterations list have the null value because the instances of the recurring invoice will be created on their scheduled issue dates. The issued_invoice_id values will be automatically generated and populated on each issue date.

Auto-sending of recurring invoices

Monite automatically sends recurring invoices to recipients if the recurrence configuration includes the following values:

  • subject_text - email subject text.
  • body_text - the text inserted in the email body. If you use custom email templates, this text substitutes the {{body_template}} variable in the receivables_invoice email template.
  • recipients - the list of invoice recipients (To, CC, BCC).

recipients can be omitted if the base invoice has the counterpart contact email specified in the counterpart_contact.email field.

If both the recurrence’s recipients and the invoice’s counterpart_contact.email are defined, recurring invoices will be sent to all of these email addresses.

Disable auto-sending

To disable automatic sending of a recurring invoice, call PATCH /recurrences/{recurrence_id} and set either subject_text or body_text or both to null. Store the old values somewhere in case you need to undo the change.

1curl -X PATCH 'https://api.sandbox.monite.com/v1/recurrences/b17d34e3-63c0-4c44-a39c-e09a162ef3b4' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "subject_text": null,
8 "body_text": null
9 }'

You can still send recurring invoice instances on demand by calling POST /receivables/{invoice_id}/send or through other means.

How recurring invoices are generated

When a recurring invoice is due to be issued, Monite creates a copy of the base invoice with the following additional values:

  • based_on - set to the ID of the base invoice.
  • document_id - an auto-generated invoice document number based on the entity’s document customization settings.
  • issue_date - set to the current date.
  • status - starts as “draft” but then immediately changed to “issued”.

The invoice due date is calculated automatically based on the payment terms of the base invoice, and is returned in the due_date field on the invoice response object. For example, if the issue date is 2024-08-01 and the payment terms are Net 10, the due_date is set to 2024-08-11.

The ID of the new invoice is saved to the iterations[].issued_invoice_id field in the Recurrence object. Monite then issues this invoice and, if automatic sending is enabled, sends it to the specified recipients.

The status of the corresponding recurrence iteration is set to one of the following:

  • "completed" - the invoice was successfully issued and, optionally, sent to the recipients.
  • "send_failed" - the invoice was issued but could not be sent to the recipients. You can call GET /receivables/{invoice_id}/mails to check for email sending errors and then resend this invoice.
  • "issue_failed" - the invoice cound not be issued and remains in the draft status. Normally this should never happen. You can verify the invoice data to see if there are any errors and then re-issue the invoice. If the base invoice’s data is no longer valid or sufficient, you will need to recreate both the base invoice and the recurrence configuration.
Re-issuing or re-sending an invoice instance does not change the corresponding iteration status (interations[].status) in the recurrence configuration.

The current_iteration in the recurrence configuration is then incremented to reflect the next pending invoice.

The response from GET /recurrence/{recurrence_id} will then look like this:

1{
2 "invoice_id": "<ID of the base invoice>",
3 "start_month": 8,
4 "start_year": 2024,
5 "end_month": 10,
6 "end_year": 2024,
7 "day_of_month": "first_day",
8 "id": "b17d34e3-63c0-4c44-a39c-e09a162ef3b4",
9 ...
10 "iterations": [
11 {
12 "issue_at": "2024-08-01",
13 "issued_invoice_id": "<ID of the issued recurring invoice>",
14 "status": "completed",
15 "iteration": 1
16 },
17 {
18 "issue_at": "2024-09-01",
19 "issued_invoice_id": null,
20 "status": "pending",
21 "iteration": 2
22 },
23 ...
24 ],
25 "status": "active",
26 "current_iteration": 2
27}

If the created invoice is the last one according to the schedule, the recurrence status is changed from "active" to "completed" to indicate that no future invoices will be created:

1{
2 ...
3 "id": "b17d34e3-63c0-4c44-a39c-e09a162ef3b4",
4 ...
5 "iterations": [ ... ],
6 "status": "completed",
7 ...
8}

Manage recurring invoices

View all recurring invoices

Use GET /recurrences to get a list of base invoice IDs and their recurrence schedule.

1curl -X GET 'https://api.sandbox.monite.com/v1/recurrences' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN'

The invoice_id fields in the response specify the base invoice IDs, and the iterations[i].issued_invoice_id fields contain the IDs of the existing recurring invoices that have been generated from the base invoices:

1{
2 "data": [
3 {
4 "invoice_id": "<base invoice ID>",
5 "start_month": 8,
6 "start_year": 2024,
7 "end_month": 10,
8 "end_year": 2024,
9 "day_of_month": "first_day",
10 ...
11 "iterations": [
12 {
13 "issue_at": "2024-08-01",
14 "issued_invoice_id": "<ID of an already issued recurring invoice>",
15 "status": "completed",
16 "iteration": 1
17 },
18 ...
19 ],
20 "status": "active",
21 "current_iteration": 2
22 },
23 ...
24 ]
25}

You can then use GET /receivable/{receivable_id} to fetch the details for a specific invoice ID, such as the total amount, line items, and so on.

Update the invoice details

Once a recurring invoice has been configured, the invoice details (such as line items) cannot be changed. If you need to update the invoice details, you must cancel the current recurring invoice and create a new one.

Change the end date

You can change the end date of a recurrence schedule to a later or earlier date. To do this, send the new end_month and/or end_year in a PATCH /recurrences/{recurrence_id} request:

1curl -X PATCH 'https://api.sandbox.monite.com/v1/recurrences/b17d34e3-63c0-4c44-a39c-e09a162ef3b4' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "end_month": 12,
8 "end_year": 2025
9 }'

The response will reflect the updated pending iterations. If the end date has been extended, additional iterations are added. If the end date has been moved ealier, excess pending iterations are removed.

Change the invoice issue day

You can change the day of the month on which the recurring invoices will be issued. Currently, it can be either the first or last day of the month. Changing the day affects the issue date of future invoices only, it does not affect already issued invoices.

1curl -X PATCH 'https://api.sandbox.monite.com/v1/recurrences/b17d34e3-63c0-4c44-a39c-e09a162ef3b4' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN' \
5 -H 'Content-Type: application/json' \
6 -d '{
7 "day_of_month": "last_day"
8 }'

The response will reflect the new scheduled issue_at dates for the future iterations of the recurring invoice.

You can change day_of_month together with end_month and end_year in the same PATCH request.

Changing day_of_month from “last_day” to “first_day” for an active recurring invoice usually results in no iteration in the current month. This can happen even if you make the change on the first day of a month.

Example: Consider a recurring invoice series that started in June and is issued on the last day of a month. On August 5, the day_of_month is changed from “last_day” to “first_day”. As a result, no invoice will be issued in August - because the first day of August has already passed. The next invoice will be issued on September 1.

Cancel a recurring invoice

You may want to cancel a recurring invoice, for example, if an entity’s customer cancels their order or subscription. To do this, call POST /recurrences/{recurrence_id}/cancel:

1curl -X POST 'https://api.sandbox.monite.com/v1/recurrences/b17d34e3-63c0-4c44-a39c-e09a162ef3b4/cancel' \
2 -H 'X-Monite-Version: 2024-05-25' \
3 -H 'X-Monite-Entity-Id: ENTITY_ID' \
4 -H 'Authorization: Bearer ACCESS_TOKEN'

This prevents future invoices from being generated, but existing issued invoices are not affected. The status of the recurrence schedule and its future invoices in the iterations array becomes "canceled".

Canceled recurring invoices cannot be reactivated or otherwise updated. The invoice and its recurrence schedule will have to be recreated anew.