Validate Bank Verification Request

This endpoint will return whether the sort code and bank account number match the sort code and bank account number that was provided for the given single request.

Note:- A valid request requires all fields to exist in the request.

SecuritybearerToken
Request
path Parameters
id
required
string

request id to fetch details

Request Body schema: application/json
bankAccount
required
string

The bank account number you would like to check matches the bank account number you queried with the the supplier when making the request with request-id

sortCode
required
string

The sort code you would like to check matches the sort code you queried with the the supplier when making the request with request-id

Responses
200
400
401
post/localSolutions/GB/bankVerification/validate/{id}
Request samples
application/json
{
  • "bankAccount": "string",
  • "sortCode": "string"
}
Response samples
application/json
{
  • "isValid": true
}