1. Requester – Payee Verification (JSON)
Developer Portal
  • API Catalogue
  • Confirmation of Payee (CoP) Requester
    • API Specifications
      POST
  • Confirmation of Payee (CoP) Responder
    • API Specifications
      POST
  • Requester – Payee Verification (JSON)
    • API Specifications
      POST
  • Requester – Payee Verification (XML)
    • API Specifications
      POST
  • Responder - Combined Lookup
    • API Specifications
      POST
  • IBAN Validation
    • API Specifications
      POST
  • Requester Batch Check Payee
    • API Specifications
      POST
  • Responder Accounts Upload
    • API Specifications
      POST
  • Schemas
    • 400
    • 401
    • ErrorData
    • ErrorResponse
    • NameVerificationRequest
    • NameVerificationRequestData
    • ResponseData
    • Response
    • VerificationReport
    • SuccessResponse
    • NameVerificationData
    • NameVerification
    • BankCustomerResponse
    • ResponseMessage
    • BankAccountValidationRequest
    • BankAccountValidationRequestData
    • BankAccountValidationResponse
    • TransformedResponse
    • AccountId
    • CreditTransferTransactionInformation
    • Creditor
    • CreditorAccount
    • CreditorAgent
    • CreditorIdentification
    • CustomerCreditTransferInitiation
    • Debtor
    • DebtorAgent
    • FinancialInstitutionId
    • GroupHeader
    • OrganisationId
    • OtherIdentification
    • PainValidationDataDto
    • PaymentInformation
    • RemittanceInformation
    • SchemeName
    • CustomerPaymentErrorStatusReport
    • CustomerPaymentStatusReport
    • ErrorReason
    • Reason
    • InfoBlock
    • Envelope
    • ErrorStatusReasonInformation
    • StatusReasonInformation
    • SupplementaryInformation
    • TransactionInfoAndErrorStatus
    • TransactionInfoAndStatus
    • VopResponseDto
    • LookupRequestData
    • LookupRequest
    • LookupResponse
    • IBANResult
    • BadRequestResponse
    • BadRequestDetail
    • UnauthorizedResponse
    • UnauthorizedDetail
    • ForbiddenResponse
    • ForbiddenDetail
    • NotFoundResponse
    • NotFoundDetail
    • MethodNotAllowedResponse
    • MethodNotAllowedDetail
    • InternalServerErrorResponse
    • InternalServerErrorDetail
    • ServiceUnavailableResponse
    • ServiceUnavailableDetail
  1. Requester – Payee Verification (JSON)

API Specifications

POST
/api/v1/bank-accounts/validate
Validates a bank account by comparing it with the provided payee name or identification number. The response includes a match indicator, reason code, and additional bank and SEPA information.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Request successfully processed, with account validation details.
Headers

Body

🟠400
🟠401
🟠403
🟠404
🟠405
🟠415
🔴500
🔴503
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://mock.apidog.com/m1/1198618-0-default/api/v1/bank-accounts/validate' \
--header 'x-fapi-financial-id: acMxgBFTYZMU5Xkte00' \
--header 'x-fapi-interaction-id: 123e4567-e89b-12d3-a456-426614174000' \
--header 'Accept: application/json' \
--header 'cop-requester-id: COP12345REQ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Data": {
        "SchemeName": "IBAN",
        "Identification": "GB29NWBK60161331926819",
        "Name": "Hillary Brown",
        "SecondaryIdentification": "Shopping",
        "RespondingBic": "CMCIFRPPXXX"
    }
}'
Response Response Example
200 - Match
{
    "Status": "Confirmed",
    "Message": "Payee's Bank has performed the matching and confirms it is a match.",
    "CreationDateTime": "2025-01-15 11:28:22.724",
    "StatusUpdateDateTime": "2025-01-15 11:28:22.827",
    "Data": {
        "VerificationReport": {
            "Matched": true
        }
    }
}
Previous
Requester – Payee Verification (JSON)
Next
Requester – Payee Verification (XML)
Built with