Confirmation of Payee
Verify that a payee's account name matches their bank account details
Making a CoP Request
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
}
}Last updated
Was this helpful?