Skip to content

Validate Bank Verification Request

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.

Security
bearerToken
Path
idstringrequired

request id to fetch details

Bodyapplication/json
bankAccountstringrequired

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

sortCodestringrequired

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

curl -i -X POST \
  'https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/bankVerification/validate/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "bankAccount": "string",
    "sortCode": "string"
  }'

Responses

Bodyapplication/json
isValidboolean

The result of this endpoint is not a match result and is not indicative of whether the suppliers result. As such:-
This endpoint can return isValid as true for a No Match result.
This endpoint can return isValid as false for a Match result.

Response
{ "isValid": true }