Create and send invoices
Learn how to create an invoice to collect payment.
This page is about outgoing invoices sent by an to its clients. For the accounts payable invoices received by an entity from its vendors, see Payables.
An invoice is a document given to the buyer by the seller to collect payment. It includes the cost of the products purchased or services rendered to the buyer.
Invoices serve as legal records if they contain the names of the seller and client, the description and price of goods or services, and the payment terms.
⚠️ Considerations
Monite provides the ability to enable invoice issuers from supported countries to meet legal and tax requirements for issuing valid invoices. To enable invoice issuers outside of supported countries to create invoices, Monite provides default non-customized templates for non-supported countries that meet internationally recognized invoice standards, which can be utilized if the invoice issuer provides the applicable VAT rates via the tax_rate_value
field in the invoice line item object. For a full list of supported countries, see Regulatory compliance.
Prerequisite: Specify the required entity information
To be able to create and issue invoices, an entity must have the following information specified.
Tax ID and/or VAT ID
An invoice must specify the tax ID and VAT ID of the entity that has issued this invoice. Depending on an entity’s jurisdiction, it may have both tax ID and VAT ID, or only one of them.
If an entity was initially created without a tax ID and VAT IDs, make sure to update entity information to add these values:
- Tax ID is specified by the
tax_id
field in the Entity object.- Netherlands businesses that have a Dutch Business Register number (KVK) should specify this number as their
tax_id
.
- Netherlands businesses that have a Dutch Business Register number (KVK) should specify this number as their
- VAT IDs can be added by using
POST /entities/{entity_id}/vat_ids
. For details, see Manage entity VAT IDs. You will need to specify the relevant VAT ID in theentity_vat_id_id
field when creating an invoice.
Bank account
An invoice must also specify the entity bank account to which the payment should be made. This bank account must be able to accept the currency reflected on the invoice.
To learn how to add entity bank accounts, see Manage bank accounts. You will need to provide the ID of the appropriate bank account in the entity_bank_account_id
field when creating an invoice.
Create an invoice
To create an outgoing invoice, complete the following steps:
- Create a counterpart that represents the customer.
- Create one or more products to be listed in the invoice.
- Get the applicable VAT rates based on the entity’s country and the counterpart’s country, and choose the rates for the products that will be listed in the invoice.
- Create payment terms for the invoice.
- Configure payment reminders and overdue reminders for the invoice. (Optional)
- Create the invoice.
Create an invoice based on a quote
You can also create an invoice based on an issued quote. For more information, see Create an invoice based on a quote.
1. Create a counterpart
The counterpart represents the customer purchasing your product or service. It is required for creating an invoice.
Learn how to create counterparts.
2. Create a product
The products or services to be listed in the invoice also must be created in advance. Depending on the entity’s country, measure units may be required for products before the invoice can be issued.
Learn how to create products and measure units.
Product currencies on invoices
Currencies of products added as line items on an invoice must always match the invoice’s base currency. You can create products in multiple currencies to match the invoice’s base currency. For more information, see Create a product.
3. Get VAT rates
Exception for non-supported countries, US, and Pakistan
Invoice issuers in certain non-supported countries, US, and Pakistan, do not need to display applicable VAT rates vis-à-vis their counterparties when creating an invoice. However, Monite enables such invoice issuers to provide the applicable VAT rates directly to the recipient by using the tax_rate_value
field in the invoice line item object. For a full list of supported countries, see Regulatory compliance.
An invoice must specify VAT rates for its line items, even if the VAT is 0%. You can call GET /vat_rates?counterpart_id={id}
to get the possible VAT rates for sales to the given counterpart:
The response includes the possible VAT rates (as a percentage multiplied by 100) and their IDs. Store the IDs somewhere as you will need them later.
The GET /vat_rates
endpoint returns all VAT rates applicable to the entity’s VAT IDs. If the entity VAT ID is not present, the request will return only a 0% VAT rate for the entity’s country in the response.
If a counterpart is exempt from paying VAT, you can provide the reason for exemption via the optional vat_exemption_rationale
field on the invoice object. For example, depending on the location, counterparts in healthcare and education services may be exempt from paying VATs. You can assign a 0% VAT rate on the invoice line item and provide the reason for exemption via the vat_exemption_rationale
field. The reason provided will also be displayed on the invoice PDF.
Learn more about VAT rates.
4. Create payment terms
Payment terms define when the invoice is due to be paid. A common payment term is Net 30, which means the full payment is expected within 30 days. Payment terms can also include early payment discounts to encourage customers to pay upfront.
Learn how to create payment terms.
5. Create the invoice
Once the required counterpart, products, and payment terms are created, you can create the invoice for a given counterpart by calling POST /receivables
endpoint with the type
field in the payload set to invoice
:
The request above is a minimal example. The request body can also include many other details about the invoice, such as a custom memo
note, fulfillment_date
(if different from the invoice date), discount
, and other fields as necessary.
Notes
- US entities cannot use the
vat_rate_id
on theline_items
object when creating invoices. US entities must provide custom VAT rate values using thetax_rate_value
field on theline_item
object. - When UK entities create invoices that fall under the Northern Ireland Protocol, the
entity_vat_id_id
field must point to a VAT ID object withtype
="eu_vat"
. Learn how to configure VAT IDs for UK entities that operate under the NI Protocol. - If the entity has invoice payment reminders enabled (that is, entity setting
reminder.enabled
istrue
), the invoice payload MUST includepayment_reminder_id
.
The response contains the id
assigned to the created invoice, along with the calculated total (total_amount
), subtotal (subtotal
), VAT (total_vat_amount
), and other information. The invoice’s due date is automatically calculated based on the creation date and payment terms, and is returned in the due_date
field on the invoice response object.
For a complete list of request and response fields, refer to the description of the POST /receivables
endpoint.
Auto-calculated amounts
Monite automatically calculates the subtotal, total, and VAT amounts for the entire invoice and individual line items. These amounts are included in responses from the /receivables*
endpoints. You can display these amounts in your application and use them in your business logic.
line_items[i].total_before_vat
- line item amount including the discount but excluding VAT.subtotal
- invoice subtotal as a sum of line item subtotals. VAT and invoice-level discount are not included, but line item discounts are included.discounted_subtotal
- invoice subtotal after invoice-level discount. VAT is not included.total_vat_amount
- total VAT amount for the entire invoice.total_vat_amounts
- a list of VAT rates used in the invoice, along with the calculated total VAT amounts for each rate.total_withholding_tax
- ifwithholding_tax_rate
is provided, the total withholding tax is calculated as the specified percentage of thediscounted_subtotal
.total_amount
- total invoice amount including VAT and all discounts (except payment term discounts). It’s the sum ofdiscounted_subtotal
andtotal_vat_amount
, minustotal_withholding_tax
(if any).total_amount_with_credit_notes
- this istotal_amount
minus the amounts of all credit notes issued for this invoice. The value is updated whenever a new credit note is issued for this invoice.amount_due
- the remaining amount to be paid for this invoice. Initially, it equals thetotal_amount_with_credit_notes
value and is automatically adjusted with each payment made towards the invoice. After the invoice is fully paid, theamount_due
becomes 0.amount_paid
- the total amount paid towards an invoice. The initial value starts at 0 and can be continually updated for partially paid invoices. For more information, see Record payments on an invoice.amount_to_pay
- this isamount_due
adjusted to reflect the currently effective discount (if any) defined by the payment terms. Payment terms discounts take effect once the invoice has been issued.
Notes
- All monetary amounts are specified in minor currency units, such as cents or pence.
- Invoice-level amounts do not include early payment discounts defined by the invoice payment terms.
After creating invoices, you can download the invoice as a PDF or send it to the customer via email.
Download the invoice as PDF
Monite automatically generates PDFs for invoices and provides several built-in PDF templates. The counterpart’s PDF is returned in the file_url
field in the invoice response:
The file_url
field returns the invoice PDF in the counterpart’s language—file_language
. Monite also provides a copy of the invoice PDF in the entity’s language—original_file_language
. This can be accessed using the original_file_url
field on the invoice object. The PDF’s language on the original_file_url
field depends on the entity’s defined language in the entity settings.
If file_url
or original_file_url
field is returned as null
, retry the request to GET /receivables/{invoice_id}
after some time.
You can also retrieve only the invoice’s entity and counterpart PDFs by making a GET
request to the /receivables/{invoice_id}/pdf_link
endpoint as shown:
It returns the following response:
Here’s how the PDF looks like:
The PDF file is updated automatically if the invoice is changed (for example, if new line items are added to a draft invoice, or if the counterpart address is changed).
Invoice customization
Monite allows entities to modify specific entity information on an invoice. This includes providing a different entity logo, website, and contact information on the invoice object. You can only do this after creating the invoice by updating the invoice using the PATCH /receivables/{receivable_id}
endpoint.
Modifying the entity information on the Invoice object only affects the entity information on that specific invoice. The entity’s existing or newly created invoices will retain the original entity information.
PDF localization
Monite provides several built-in PDF templates for receivables. The language on the invoice’s PDF depends on the language of the invoice’s counterpart. If the counterpart language is absent, the invoice’s PDF will be created in the entity’s language. Updating the invoice’s counterpart language or changing the invoice’s counterpart to a counterpart with a different language will also update the invoice’s PDF translation. For more information, see PDF localization.
Monite formats delimiters and decimal separators on amounts displayed on the PDFs based on the entity’s country. Entities can change their default template or customize their chosen templates anytime. For more information, see PDF templates.
Verify the invoice
Before a newly created invoice can be issued to a counterpart, certain required information must be present on the invoice. This includes information about the entity, counterpart, line items, and VAT rates. To trigger regulatory checks for an invoice and check that an invoice contains all required information, call POST /receivables/{receivable_id}/verify
:
The errors
object in the response shows all the missing information required on the invoice. If the invoice has all required information filled in, all response fields have the null
value. The warnings
object in the response represents possible faulty configurations on the invoice. For example, a mismatch between payment terms and payment reminders:
If some of the required invoice fields are missing, the response contains a list of the missing fields. For example, the following response means that the entity tax ID, the counterpart tax ID, and measure unit ID on the invoice’s second line item are missing. To make the invoice valid, you will need to update the corresponding entity and counterpart objects and provide their tax_id
.
Send the invoice via email
Once a draft invoice has been finalized, you can send it to the counterpart via email. The invoice will be attached as a PDF file to the email. You can also preview the invoice’s email before sending it; for more information, see Preview an invoice’s email.
To send an invoice, call POST /receivables/{receivable_id}/send
and provide the subject_text
and body_text
. The language
field determines the language of the email template used to send the invoice. If a value is not provided, it defaults to en
.
Aside from the counterpart’s default email address, Monite also allows you to provide a list of email addresses to send the invoice using the recipients
field. If the recipients
field is not provided, the invoice email is sent only to the counterpart’s email address.
Notes
- The values of the
subject_text
andbody_text
fields will replace thesubject_text
andbody_template
variables if they were used when creating your custom templates. For more information, see Create and manage email templates and Variables list. Both the subject and body texts can include variables as placeholders for invoice-specific and counterpart-specific data. - You can opt to attach the invoice’s PDF to the email sent to the counterpart. To do this, you must update the value of the
mail.attach_documents_as_pdf
field totrue
in your Monite partner settings. For more information, see Update partner settings.
The To
email address is taken from the Counterpart
object associated with the invoice. This address is also returned in the counterpart_contact.email
field of the Receivable
object that represents the invoice.
All invoice emails are sent from the noreply@monite.com
email address by default. You can customize the email domain name—@exampleCompany.com
— by configuring a mailbox for the entity. You can also customize the email sender name and username by updating your Monite partner settings. For more information, see Update partner settings.
A 200 OK
response from POST /receivables/{receivable_id}/send
means the email was successfully sent from the Monite email server.
Notes
- Sending a
draft
invoice changes its status toissued
, and theissued_date
field is automatically set to the current date and time. Issued invoices can no longer be edited. - Invoices in the
uncollectible
status cannot be sent via email. All other statuses can be sent.
Resend an invoice
To resend an already issued invoice, you can call POST /receivables/{receivable_id}/send
again, optionally with different subject_text
and body_text
templates.
Monite also automatically sends payment reminders to the counterpart before the invoice due date and each payment term.
Resending an invoice does not change its status
or issued_date
.