Verification of Payee - Responder

Description of Verification of Payee Responder service.

Service description

The VOP Responder Service enables other banks to request verification of creditor account details. To utilize this service, accounts must be synchronized with all mandatory VOP fields.

The documentation of account sync can be found here.

Upon receiving a request, a notification is generated. If you would like to receive these notifications, please contact your relationship manager.

Inbound VOP Request Notification

Incoming VOP Request Notification can be requested via the Messages Services.

HTTP Header Message-Response-Type: VERIFICATION_OF_PAYEE_INCOMING_NOTIFICATION

Body

Field
M/O
Description

Request.Data.Id

M

Name verification ID.

Request.Data.CreatedOn

M

Verification time.

Request.Data.Attributes.AccountNumber

M

Account number of the account to do a name verification on.

Request.Data.Attributes.AccountNumberCode

M

Type of the account number, always 'IBAN'.

Request.Data.Attributes.BankId

M

BIC 8 or BIC 11 of the account to do a name verification on.

Request.Data.Attributes.BankIdCode

M

Type of bank ID, always 'SWBIC'.

Request.Data.Attributes.Name

M

The name string to be checked for a match.

Request.Data.Attributes.RequestDtime

M

Request time.

Request.Data.Attributes.RequesterBankId

M

BIC 8 or BIC 11 of the requester of the name verification.

Response.Data.Attributes.Answer

O

Indicator if the verification has produced a (full) match or not. CONFIRMED in case of a full match, REJECTED otherwise. Not populated if request failed.

Response.Data.Attributes.ActualName

O

The actual name of the account holder. Only present in case of a close match

Response.Data.Attributes.Reason

O

Human-readable description of reason code . Only populated if reason code is.

Response.Data.Attributes.ReasonCode

O

Encoded reason for mismatch. Only populated if answer is rejected. Possible values.

Response.Data.Attributes.Status

M

Admission status, indicates if the request has been successfully received from the counterparty and could be responded to. confirmed in case of success, failed otherwise.

Examples

{
    "Request": {
        "Data": [
            {
                "Attributes": {
                    "AccountNumber": "FR7610278067010002005307633",
                    "AccountNumberCode": "IBAN",
                    "BankId": "CCBPFRPPMTZ",
                    "BankIdCode": "SWBIC",
                    "Name": [
                        "Smith John"
                    ],
                    "RequestDtime": "2025-01-30T14:13:40.111Z",
                    "RequesterBankId":  "BNLIITRRXXX"
                },
                "CreatedOn": "2025-01-30T14:13:40.111Z",
                "Id": "4942f12c-5430-4d1b-8b56-c7f1c8a9118d"
            }
        ]
    },
    "Response": {
        "Data": {
            "Attributes": {
                "Answer": "CONFIRMED",
                "ActualName": "Smith John",
                "Reason": "It's a match. The account name and details match those on record.",
                "ReasonCode": "MTCH",
                "Status": "confirmed"
            }
        }
    }
}

Example of the flow

Drawing
Verification of Payee Responder
Step
Action
Description

1.

Sync accounts with details required for Verification of Payee.

To utilize this service, accounts must be synchronized with all mandatory VOP fields. The documentation of account sync can be found here.

2.

LHV will confirm the synchronization.

See possible error codes here.

3.

LHV receives inbound VOP Request.

LHV will receive inbound VOP Request from Debtor Party.

4.

LHV will provide notification of inbound VOP Request.

LHV will issue a notification regarding a previously received request. This notification will include details about both the request and response.

Reason code values

ReasonCode
Description

MTCH

It's a match. The account name and details match those on record.

NMTC

The name you provided doesn't match the name for the account. You can still continue with the payment, but your money may be sent to the wrong account.

CMTC

The name is a close match. The actual name on the account is (...).

NOAP

We are currently unable to verify the account details. You can either try again in a few minutes or continue your payment without verification. If you continue, please double check the details.

Last updated

Was this helpful?