v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBConfirmation of payee [beta]
Verify a beneficiary's account name before making an FPS payment using the Confirmation of Payee (CoP) service.
CoP allows payers to check that the name they have for the intended recipient matches the actual name on the recipient's account, reducing the risk of fraud and misdirected payments.
This verification does not create an FPS payment transaction. The request is forwarded to the payment provider for real-time name verification.
This endpoint generates a CoP name verification requested event. The result is received in a CoP name verification result received event.
Headers
Account token - token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message
Organization identifier.
A UUID (without hyphens) to ensure the operation remains idempotent, allowing for operation repetition without causing unintended effects or duplication. Identifies the transaction on future events.
Request tracking identifier. If not provided, a random UUID is generated.
Request body
Example request
{
"id": "4942f12c-5430-4d1b-8b56-c7f1c8a9118d",
"account_classification": "personal",
"account_number": "12345678",
"account_number_code": "BBAN",
"bank_id": "123456",
"bank_id_code": "GBDSC",
"name": "Doe Reetos",
"secondary_identification": "A1B2C3D"
}Response
COP verification result
Example response
{
"status": "confirmed",
"answer": "match",
"actual_name": "Mabel Syrup",
"name_in_request": [
"Tam Arind"
],
"reason": "String is a close match to the account"
}