How can I send to a specific Company Numer ?

Identifier : Company Number

Customer has Company Number but no VAT Number

A company might not have a VAT number, they are identified with another identification number, typically a company number. In that case the field VAT number is not used, an additional identifier is included.

Below the identifier info for Belgium and the Netherlands:

Country (example)Identifier TypeIdentifier
BelgiumCompany NumberCBE
NetherlandsKamer van Koophandel nummerKvK

For the full list of identifiers, we refer to Identifier List.

Examples of the API content for Belgium and the Netherlands:

  "Customer": {
   "Name": "Customer Company Name",
   "PartyType": "Customer",
   "Identifiers": [
        {
          	"IdentifierType": "CBE",  //Identifier for Belgian Company Number
          	"Identifier": "0862884999"  //Belgian Company Number
        }
    ],
   "Addresses": [
        {
        "AddressType": "InvoiceAddress",
        "Name": "Customer Company Name Belgium",
        "Street": "XXXXX",
        "StreetNumber": "XXXX",
        "City": "XXXX",
        "Box": "XXXX",
        "CountryCode": "BE”
       	}
   ]
 }
  "Customer": {
   "Name": "Customer Company Name",
   "PartyType": "Customer",
   "Identifiers": [
        {
          	"IdentifierType": "CBE",  //Identifier for Belgian Company Number
          	"Identifier": "0862884999"  //Belgian Company Number
        }
    ],
   "Addresses": [
        {
        "AddressType": "InvoiceAddress",
        "Name": "Customer Company Name Netherlands",
        "Street": "XXXXX",
        "StreetNumber": "XXXX",
        "City": "XXXX",
        "Box": "XXXX",
        "CountryCode": "NL”
       	}
   ]
 }

VAT different from Company Number

When sending e-invoice you might come across the possibility that you have to send an invoice towards an entity which has multiple entities with the same VAT number. To make sure the invoices are delivered to the correct receiver you have a few options.

CBE (Company number) is communicated as an additional identifier. For this customer, the company number will get preference and used it the number is registered on Peppol as receiver.

  "Customer": {
   "Name": "Politie Antwerpen",
   "VATNumber": " BE0207500123",
   "PartyType": "Customer",
   "Identifiers": [
        {
          	"IdentifierType": "CBE",
          	"Identifier": "0862884185"
        }
    ],
   "Addresses": [
        {
        "AddressType": "InvoiceAddress",
        "Name": "Politie",
        "Street": "XXXXX",
        "StreetNumber": "XXXX",
        "City": "XXXX",
        "Box": "XXXX",
        "CountryCode": "XXXX”
       	}
   ]
 }