1. Confirmation of Payee (CoP) Requester
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. Confirmation of Payee (CoP) Requester

API Specifications

POST
/open-banking/v3.3/cop/confirmation-payee-requester/request-name-verification
Lookup the account details to find the Payee. Returns a Match Indicator, Reason Code and Correct Account Name (for a close match)

Request

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

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Account name verification report
Headers

Body

🟠400
🟠401
🟠403
🟠404
🟠405
🟠406
🔴500
🔴503
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://mock.apidog.com/m1/1198618-0-default/open-banking/v3.3/cop/confirmation-payee-requester/request-name-verification' \
--header 'x-fapi-financial-id: ycMxgBFTYZMU5XkteM' \
--header 'x-fapi-interaction-id: 0863628c-c9be-431d-8053-565de4c3ba1a' \
--header 'cop-requester-id: 8053-565de295359229' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Data": {
        "SecondaryIdentification": "ABC-12345",
        "SchemeName": "SortCodeAccountNumber",
        "Identification": "71585660483575",
        "AccountType": "Business",
        "Name": "Daniel Jones"
    }
}'
Response Response Example
200 - Success
{
    "Status": "string",
    "Message": "string",
    "CreationDateTime": "string",
    "StatusUpdateDateTime": "string",
    "Data": {
        "VerificationReport": {
            "Matched": false,
            "ReasonCode": "MBAM",
            "Name": "Daniel Jones"
        }
    }
}
Previous
Confirmation of Payee (CoP) Requester
Next
Confirmation of Payee (CoP) Responder
Built with