Monite API changelog

Stay up to date with the latest features, improvements, and breaking changes in the current version of Monite API.

January 20, 2025

Accounts payable

  • Credit notes.
    • Two new endpoints added:
      • POST /payable_credit_notes/upload_from_file allows you to upload a credit notes in the PDF, PNG, or JPG format to Monite. See more.
      • POST /payable_credit_notes/{credit_note_id}/cancel_ocr allows you to cancel the OCR scanning process for a specific credit note.
    • New fields file_id and file_url added to the payable_credit_note object responses.
    • Now, the field based_on in the payable_credit_note object is optional.

January 16, 2025

Accounts receivable

  • Recurring invoice tweaks. The subject_text and body_text fields in recurring invoice configuration were changed from required to optional. Recurring invoices will be sent automatically only if both subject_text and body_text are provided, plus either recipients in the recurrence configuration or counterpart_contact.email in the base invoice.

  • PDF improvements. Unit prices in PDF invoices, quotes, and credit notes are now displayed with up to four decimal places. This allows for more precise display of prices in documents that use VAT-inclusive pricing.

December 23, 2024

Accounts receivable

  • Improved filtering by tags. New tag_ids query parameter in GET /receivables lets you find receivables that have all of the specified tags. In other words, this filter works as an AND and is an alternative to the existing tag_ids__in filter that works as an OR.

December 16, 2024

API version 2024-05-25 is now publicly available to all Monite partners. To start using this version:

  1. Change the api_version setting in your partner settings (/settings) to 2024-05-25:

    1curl -X PATCH 'https://api.sandbox.monite.com/v1/settings' \
    2 -H 'X-Monite-Version: 2024-05-25' \
    3 -H 'Authorization: Bearer YOURT_PARTNER_TOKEN' \
    4 -H 'Content-Type: application/json' \
    5 -d '{"api_version": "2024-05-25"}'
  2. Change the X-Monite-Version header value in all API calls to 2024-05-25. For example:

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

For more information, see How to upgrade.