Confirmation of Payee
Verify that a payee's account name matches their bank account details
Confirmation of Payee (CoP) is a security feature that verifies whether an account holder's name matches the account details you provide. It helps to:
Reduce fraud by verifying the account holder's name before sending funds
Prevent accidental payments to wrong accounts due to mistyped details
Provide confidence that money is being sent to the intended recipient
Alert you when the account name doesn't match or only partially matches
Making a CoP Request
To verify account details, execute the confirmationOfPayee mutation. You must provide the accountIdType, the relevant account details, and the accountName you wish to verify.
const bodyJSON = {
variables: {
input: {
accountIdType: "BSB",
bsb: "012003",
accountNo: "123456789",
accountName: "John Smith",
},
},
query: `
mutation ($input: CopInput!) {
confirmationOfPayee(input: $input) {
success code message billable
}
}`,
};mutation ($input: CopInput!) {
confirmationOfPayee(input: $input) {
success
code
message
billable
}
}The code field in the response indicates the result of the verification.
The billable field indicates whether the CoP request may be subject to a fee.
Last updated
Was this helpful?