VOP identification types

Learn more about identification types supported for VOP

The VOP scheme supports name-based verification for all persons and identifier-based verification (IBAN + identification code) for legal persons. Mambu Payments supports any identifier code in both incoming and outgoing requests, as required by the EPC VOP Scheme Rulebook.

Check supported identification types

Before sending a VOP request with an organisation identifier, verify that the payee's PSP supports the identification type you want to use.

Send a GET request to /supported_identification_types with the payee's IBAN:

curl --request GET \
     --url 'https://api.numeral.io/v1/supported_identification_types?payee_account_number=FR5714508000406767772588K59' \
     --header 'accept: application/json' \
     --header 'x-api-key: <your_api_key>'

The response lists the identification types the payee's PSP supports:

{
  "payee_account_number": "FR5714508000406767772588K59",
  "payee_agent": "BDFEFRPPXXX",
  "supported_identification_types": ["name", "legal_entity_identifier", "siren"]
}

If the payee's PSP is not a VOP participant, the API returns a 404:

{
  "error": "validation_error",
  "message": "validation errors occurred while processing request",
  "details": [
    {
      "field": "payee_account_number",
      "reason": "payee agent is not participant"
    }
  ]
}

Identification types reference

The table below lists common identification types used across European countries. The payee_identification_type column shows the value to pass in the API request.

Identification typepayee_identification_typeDescription
NamenameThe name of the legal entity or individual
LEIlegal_entity_identifierA 20-character alphanumeric code identifying legal entities in financial transactions globally
Any BICbusiness_identification_codeA BIC assigned by Swift
Bank party identificationbank_identificationA unique identifier assigned by a bank to identify a client relationship
Central bank identification numbercentral_bank_identificationA unique identifier assigned by a central bank
Clearing identification numberclearing_house_identificationA unique identifier assigned by a clearing house
Certificate of incorporation numbercompany_incorporation_numberA unique identifier assigned by a designated authority to a certificate of incorporation
Country identification codecompany_identificationAn organisation identifier assigned by a country authority (for example, a corporate registration number)
Customer numbercustomer_numberA number assigned by an issuer to identify a customer
DUNS numberduns_numberA unique identifier provided by Dun & Bradstreet
Employer identification numberemployee_numberA number assigned by a registration authority to an employer
GS1 GLN identifierglobal_location_numberA reference number used to identify legal, functional, or physical entities under the GS1 numbering scheme
SIRENsirenA nine-digit code assigned by INSEE to identify an organisation in France
SIRETsiretA 14-digit code assigned by INSEE to identify an organisational unit in France. Consists of the SIREN number followed by a five-digit classification number
Tax identification numbertax_numberA number assigned by a tax authority to identify an organisation
Business domain identificationbusiness_domain_identificationA business domain-specific identifier
Otherother_identificationAny other identifier not covered above

Related