Search

Printing

Print is the final fallback delivery method when an invoice cannot be sent as an e-invoice or by email. Maventa evaluates delivery options in the following order:

  1. E-invoice
  2. Email
  3. Print service

To force print delivery, disable all other routes in the invoice sending API. The print service is not enabled by default — it must be activated separately for each company account.

To send an invoice by print, include the recipient’s full postal address in the invoice XML.

Requirements for print delivery:

Activating the printing service

To use print as a delivery option, the printing service must be activated separately for the company account. Activation can be done through the API or UI.

Maventa applies internal safety limits and alerting on print volumes to help catch unusually high or accidental print sending before it causes problems. These safeguards are monitored internally by Maventa and are not exposed through the API.

Forced print route

You can also force print delivery without explicitly disabling routes. The following XML formats support this natively:

<eb:To>
  <eb:PartyId>PRINT</eb:PartyId>
  <eb:Role>Receiver</eb:Role>
</eb:To>

If a SOAP header is not an option, use this instead:

<ToIdentifier SchemeID="0037">PRINT</ToIdentifier>
<ToIntermediator>PRINT</ToIntermediator>
<NET_SERVICE_ID>PRINT</NET_SERVICE_ID>

The PRINT keyword in the invoice XML is supported mainly for legacy systems that have no way for the sender to choose the delivery channel. For new integrations, control delivery through the API metadata (such as disabled_routes) so the channel is an explicit choice in the integration rather than embedded in the invoice XML.

This mechanism will not be supported forever — plan new integrations around the API metadata approach.

Template

By default, invoices sent through the print service use a Maventa-generated invoice template. This template is optimised for efficient processing, complies with all technical requirements, and is designed to fit the envelopes used by the printing service provider in each country. Customers can personalise this template by adding their company logo (via UI or API).

Examples of Maventa templates for each country are available on the country-specific rules and settings page.

As an alternative, customers may use their own invoice image for all printed invoices or on a per-invoice basis (via UI or API). When using a custom image, Maventa automatically adds a cover sheet with the recipient’s address details. This ensures proper alignment with the envelope window. The cover sheet is counted as an extra page and billed accordingly.

Prints are always double-sided if there is more than one page.

For Peppol BIS 3.0 and other UBL-based invoices, “your own invoice image” is the embedded attachment whose AdditionalDocumentReference carries <cbc:DocumentDescription>CommercialInvoice</cbc:DocumentDescription>. Only that attachment is treated as the invoice image; any other embedded attachment is handled as a regular supporting document. See Peppol BIS 3.0 for the exact XML.

When using your own invoice image, make sure it meets the technical restrictions below.

Technical restrictions of the PDF

All files must be in PDF format and fully self-contained — no dynamic components, and all fonts, images, and other resources must be embedded. All new customers should test their PDF files (all variants of fonts, images, etc.) to verify that the PDFs can be processed. If the PDF contains graphics such as logos, charts, or other images, they must be of good quality.

PDF attachments must be provided without encryption or any form of security restriction. Password-protected files or files with restricted permissions (e.g., preventing printing or content extraction) cannot be processed by the printing service.

Attachment handling

When sending separate PDF attachments for print, the following rules apply:

If these limits are exceeded, all attachments will be discarded. The sender will be notified by email, but the invoice image itself will still be printed.

There is an extra charge per page printed.

Default setting: For Finnish companies, attachment printing is disabled by default. For all other countries, it is enabled. This setting can be adjusted via the API or UI.

Use the PATCH ​/v1​/company​/setting to change the setting. Under the send_invoice_print block, set the parameter attachment_print to true to enable attachment printing, or false to disable it.

Error handling

If an invoice cannot be delivered due to an outdated or invalid address, it is returned to the sender’s address. The sender’s address is always included on the Maventa-generated invoice image and on the cover sheet. The return address is taken from the invoice data.

The exception is Norway, where Maventa offers an automated return post handling feature. Invoices are not returned to the sender’s address in this case. Read more on the Norway-specific page.

Maventa validates that a recipient address is provided and all required address fields are present, but does not validate the format or correctness of the address content.

Country specific rules and settings

Some aspects of the printing service vary by country:

Take a look at the country specific instructions:

Back to top