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
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
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/localSolutions/GB/bankVerification/validate/{id}
- Production serverhttps://connect.creditsafe.com/v1/localSolutions/GB/bankVerification/validate/{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"
}'Response
{ "isValid": true }