Skip to content

Return Request History By ID

Request

This endpoint will return details of a past request by id.

Security
bearerToken
Path
idstringrequired

request id to fetch details

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/bankVerification/history/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/json
supplierRequestDataobject
customerReferencestring

Your Customer reference

supplierResponseobject
requestDatetimestring

The date time this request was returned

requestIdstring

A unique reference to your request used for querying the endpoints where {id} is required

sortCodeDetailsobject(SortCodeCheckResponse)

Provides additional information about the returned sort code. This property is only returned when an additional service line is active. Please contact your account manager for details about availability and enabling this feature.

Response
{ "supplierRequestData": { "customerName": "string", "accountType": "string", "secondaryReference": "string" }, "customerReference": "string", "supplierResponse": { "customerName": "string", "returnedCustomerName": "string", "result": true, "resultText": "string", "nameMatchResult": "string", "accountTypeResult": true, "reasonCode": "string" }, "requestDatetime": "string", "requestId": "string", "sortCodeDetails": { "sortCode": "string", "bankName": "string", "branchName": "string", "address": {}, "telephone": "string", "bicCode": "string", "chapsBicCode": "string", "paymentTypes": {} } }