With supplier activation feature, customers can get information about suppliers who have sent them invoices through scan service, but could send the invoices electronically.
Supplier activation report is taken from the invoice data relayed through Maventa during the last six months. Based on the information provided, customers can contact the supplier and request e-invoices in the future.
Supplier activation feature is available as an email report or through the Detect service.
Supplier activation 2.0 provides both finding supplier information and sending notification emails to them through API.
Use POST /v1/company/suppliers/query to get a list of suppliers who have been sending PDFs to you, but have been sending e-invoices to other companies. oldest_invoice_time
specifies the time frame; the maximum value allowed is one month in the past. Note that include_notified
has no effect yet.
Example request:
{
"include_notified": false,
"oldest_invoice_time": "2025-04-13T09:32:38.130Z"
}
Example response:
{
"status": "completed",
"suppliers": [
{
"company_bid": "FI12345678",
"company_country": "FI",
"company_email": "supplier.contactperson@email.com",
"company_name": "Example Supplier Company AB"
}
]
}
Use POST /v1/company/suppliers/notifications to send emails to suppliers. You can use the supplier information returned from the query endpoint above, or if no contact details are available, you must determine the supplier names and/or email addresses manually. The language
parameter specifies the language in which the notification email will be sent; currently, only English (“en”) and Swedish (“se”) are supported.
Example request:
{
"suppliers": [
{
"email_address": "supplier.contactperson@email.com",
"name": "Example Supplier Company AB",
"language": "se"
}
]
}
The response is an empty JSON {} if sends to all provided email addresses succeeded. Any failed sends are listed in the response:
{
"failures": [
{
"email": "supplier.contactperson@email.com",
"reason": "Unsupported language fi"
}
]
}
The notification email contains following information about your company:
If any of this information is not found on Maventa, these fields are left blank on the email and the message will be sent without them. Example of what the email looks like: