The Verification of Payee (VoP) API allows you to instantly verify that a creditor's name matches the provided account details (IBAN) and display the result to your PSU, e.g. when they create a new supplier card in your system. With this API, you can provide enhanced security for your PSU's financial operations by reducing the risk of fraud and misdirected payments.
Requests to the VoP API require an access token with scope set to paymentinitiationcorporate.
Submit Verification Request
To request a VoP, provide the creditor's name and IBAN. The system will then check the specified name against the registered name of the account holder and return one of four possible verification results to display to your PSU.
Endpoint
Code
POST /premium/v1/payee-verifications
Request Headers
Name
Type
Description
X-Request-ID
string(uuid)
The ID of the request, unique to the call, as determined by the initiating party.
PSU-ID
string
The ID used to identify the PSU at the bank. Typically a local social security number or another unique login ID.
PSU-Corporate-ID
string
The Corporate ID of the PSU when acting on behalf of an organisation, e.g. Org. nummer for SE, KVK for NL.
Request Body
Name
Type
Description
party
object
The full name of the payment recipient.
partyAccount
object
The account to which the payment will be credited.
{ "partyNameMatch": "CMTC", "matchedName": "Acme AB", "tppMessages": [ { "category": "WARNING", "code": "CREDITOR_NAME_CLOSE_MATCH", "text": "Creditor name closely matches the registered name of the account." } ]}
No Match
Code
{ "partyNameMatch": "NMTC", "tppMessages": [ { "category": "WARNING", "code": "CREDITOR_NAME_MISMATCH", "text": "Creditor name does not match the registered name of the account." } ]}
Not Applicable
Code
{ "partyNameMatch": "NOAP", "tppMessages": [ { "category": "WARNING", "code": "CREDITOR_NAME_UNVERIFIED", "text": "Creditor name cannot be verified for this account." } ]}
Submit Bulk Verification Request
It is also possible to perform multiple VoPs at once by submitting a list of creditor details to verify. A uetr parameter containing a GUID must be provided for each creditor in the request body. The same uetr value is echoed back in the corresponding response object, allowing each verification result to be correlated with the original creditor.
Endpoint
Code
POST /premium/v1/bulk-payee-verifications
Request Headers
Name
Type
Description
X-Request-ID
string(uuid)
The ID of the request, unique to the call, as determined by the initiating party.
PSU-ID
string
The ID used to identify the PSU at the bank. Typically a local social security number or another unique login ID.
PSU-Corporate-ID
string
The Corporate ID of the PSU when acting on behalf of an organisation, e.g. Org. nummer for SE, KVK for NL.