> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plude.io/llms.txt
> Use this file to discover all available pages before exploring further.

# E-invoicing

> E-invoicing, also known as electronic invoicing, refers to the practice of exchanging invoices digitally between businesses.

E-invoicing involves using a standardized format that enables automated issuance, receipt, and processing of invoices within the financial systems of both buyers and sellers. Compliance with e-invoicing standards is particularly important in regions like the European Union.

<Note>E-invoice is only available for **premium plans**.</Note>

# Country support

Plude is compliant with the e-invoicing standards in the European Union. This means we can generate valid invoices in the required PDF and XML formats and automatically transmit issued invoices to the relevant tax authority of a EU country.

| **country** | **e-invoice standard** | **status**        |
| ----------- | ---------------------- | ----------------- |
| Denmark     | OIOUBL 2.02            | supported         |
| Finland     | Finvoice 3.0           | supported         |
| France      | pending                | postponed to 2026 |
| Germany     | PeppolBIS 3.0          | supported         |
| Italy       | PeppolBIS 3.0          | supported         |
| Spain       | PeppolBIS 3.0          | supported         |
| Sweden      | Svefaktura 1.0         | supported         |

# Sending E-invoice

To send an invoice as e-invoice simply apply the parameter to the book request.

<Steps>
  <Step title="Register GLN">
    Register a valid Global Location Number ([GLN](https://www.gs1.org/standards/id-keys/gln)) on the `customer` object.
  </Step>

  <Step title="Book with e-invoice">
    Apply the e-invoice parameter in the booking request

    ```json theme={null}
    {
        ...
        "distributeAsEinvoice" : true
        ...
    }
    ```
  </Step>

  <Step title="Distribute e-invoice">
    ... or force the distribution as e-invoice via the endpoint.
  </Step>
</Steps>
