Confirmation of Payee
Create an account name check
This endpoint allows you to check the account details of a payee with their bank before you create a beneficiary or payment. If the account details are confirmed, you will have greater assurance that a payment you create will reach the correct bank account. This endpoint does not support idempotent requests. Any requests containing an x-mod-nonce header used by a previous request will return the response <code>403: Forbidden ("Unique/allowed nonce header not found")</code>
post/account-name-check
Request body
Example request
{
"paymentAccountId": "A123AAA4",
"sortCode": "000000",
"accountNumber": "12345678",
"secondaryAccountId": "A-1234567890",
"accountType": "PERSONAL",
"name": "Joe Bloggs"
}Response
Created
Example response
{
"id": "C12001569Z",
"result": {
"code": "MATCHED",
"name": "Joseph Bloggs"
}
}