Skip to content

Confirmation of Payee — API Guide v2.1

Confirmation of Payee (CoP) lets a TPP verify that an IBAN belongs to the named individual or business before initiating a payment.

API Sequence Flow

Click to expand

POST /customers/action/cop-query

Request headers

HeaderRequiredDescription
o3-provider-idYesIdentifier for your LFI registered in the Hub
o3-aspsp-idYes (deprecated)Deprecated alias for o3-provider-id. Will be removed in a future version — use o3-provider-id
o3-caller-org-idYesOrganisation ID of the TPP making the underlying request
o3-caller-client-idYesOIDC client ID of the TPP application
o3-caller-software-statement-idYesSoftware statement ID of the TPP application
o3-api-uriYesThe parameterised URL of the API being called by the TPP
o3-api-operationYesThe HTTP method of the operation carried out by the TPP (e.g. POST)
o3-ozone-interaction-idYesHub-generated interaction ID. Equals o3-caller-interaction-id if the TPP provided one
o3-caller-interaction-idNoInteraction ID passed in by the TPP, if present

Query parameters

ParameterRequiredDefaultDescription
pageYes1Page number for paginated results
page-sizeYes100Number of records per page

Request body

Content-Type: application/json

The Hub sends a plain JSON body — not a JWS. The body always contains a single account identified by IBAN and a name to match against.

data.account

FieldTypeRequiredDescription
schemeNamestringYesAlways IBAN
identificationstringYesThe IBAN to look up
nameobjectYesEither a PersonName or BusinessName — see below

PersonName

FieldTypeRequiredDescription
fullNamestringYesThe full name of the person as submitted by the TPP
firstNamestringNoGiven name, if provided by the TPP
lastNamestringNoFamily name, if provided by the TPP

BusinessName

FieldTypeRequiredDescription
businessNamestringYesThe business name as submitted by the TPP

Example — personal name

json
{
  "data": {
    "account": {
      "schemeName": "IBAN",
      "identification": "AE070331234567890123456",
      "name": {
        "fullName": "Ahmed Al Mansouri",
        "firstName": "Ahmed",
        "lastName": "Al Mansouri"
      }
    }
  }
}

Example — business name

json
{
  "data": {
    "account": {
      "schemeName": "IBAN",
      "identification": "AE070331234567890123456",
      "name": {
        "businessName": "Al Mansouri Trading LLC"
      }
    }
  }
}

Response

Content-Type: application/json

Return 200 in all lookup scenarios — whether the account is found or not. The Hub interprets the data array contents to determine the match result returned to the TPP.

200 — Account found

Return a data array containing one record per account holder. Joint accounts may return multiple records.

Personal account

verifiedClaims[].claims.fullName is mandatory. Include givenName and familyName if your system holds them separately — the Hub uses these to improve match precision.

json
{
  "data": [
    {
      "id": "cust-001",
      "verifiedClaims": [
        {
          "verification": {
            "trustFramework": "UAE.FI"
          },
          "claims": {
            "fullName": "Ahmed Al Mansouri",
            "givenName": "Ahmed",
            "familyName": "Al Mansouri"
          }
        }
      ]
    }
  ],
  "meta": {
    "totalPages": 1,
    "totalRecords": 1
  }
}
Business account

Populate verifiedClaims[].organisationClaims.name with the registered business name on the account.

json
{
  "data": [
    {
      "id": "cust-002",
      "verifiedClaims": [
        {
          "verification": {
            "trustFramework": "UAE.FI"
          },
          "organisationClaims": {
            "name": "Al Mansouri Trading LLC"
          }
        }
      ]
    }
  ],
  "meta": {
    "totalPages": 1,
    "totalRecords": 1
  }
}

200 — Account not found, opted out

Return 200 with an empty data array for scenarios where no account was found matching the IBAN or if the accont opted out of CoP (). Do not use 404 or 204 — the Hub expects 200 and treats an empty array as a no-result response.

json
{
  "data": [],
  "meta": {
    "totalPages": 0,
    "totalRecords": 0
  }
}

Error responses

All error bodies must include errorCode and errorMessage.

403 — Forbidden
errorCodeerrorMessageWhen to use
Consent.AccountTemporarilyBlockedThe account is blocked from receiving payments.The account is blocked from receiving payments for a temporary reason — e.g. account status is Suspended
Consent.PermanentAccountAccessFailureThe account is blocked from receiving payments.The account is blocked from receiving payments permanently — e.g. account status is Closed, Deceased, or Unclaimed