Sending the Sales Invoice
Send the document created in the First Step
Concept and Methods
Following the creation of your first invoice, the next step is to dispatch it to the recipient. Understanding that invoice delivery methods can vary significantly from one country to another and even among different customers, we've simplified the process to ensure ease and flexibility.
You can explore the various transportTypes available for sending invoices by visiting our documentation page Transport Types. It's important to note that not all features may be available on the test network within the sandbox environment. Therefore, we recommend regularly checking our network environments documentation for the most recent updates and changes. This proactive approach helps ensure that you're always aligned with the latest capabilities and requirements for invoice delivery.
Sending the invoices, 2 options:
- Send via API
- Use no API, send manually or automatically
Send via API
Use the commands/send API endpoint for immediate sending
- Content of the Json body : see example below.
- You can send one or many invoices with one command,
- All the invoices must be for the same TransportType (e.g. Peppol).
- Available Transport Types
- Multiple Transport types are available
- Einvoice Networks:
- Peppol
- Various other Einvoice networks
- Other : Send via Email, Letter
- Einvoice Networks:
- List of all TransportTypes can be found here -> Transport Types
- Multiple Transport types are available
| Endpoint | Method | Response |
|---|---|---|
| /v1/orders/commands/send | POST | OK |
{
"Transporttype" : "Peppol",
"OrderIDs" :
[
1684998,
1684999
]
}{
"Transporttype" : "Peppol",
"OrderIDs" :
[
1684998
]
}Sending without API
Options are:
- Manual sending
- This can can be useful if you want to check the invoices prior to sending or if you want to add attachments.
- Enabling the automatic sending
- The automatic sending can be enabled. Every day at 9 am all non-sent invoices will be sent.
- How to enable it
- In MyBillit interface, go to company settings page : Settings/General/Advanced : "Automatically send your invoices to the customer").
Options in different languages:
- English : Automatically send your invoices to the customer
- Dutch : Verstuur je facturen automatisch naar de klant
- French : Envoyez automatiquement vos factures au client
Validations performed by Billit when the sending is launched
Per transporttype, controls are executed linked to the TransportType (e.g. Peppol, Email, other E-invoice network).
Error types can be:
- The content is not compliant with the validation rules of the network (e.g. Peppol)
- The receiver is not on the network
In case of error, you will have to adjust the invoice before sending again.
Updated 12 days ago