Skip to content

Return List Of Identity Search History Items

Request

Retrieves a paginated history list for the specified customer/user, filtered based on the include* parameters.

Security
bearerToken
Query
pageinteger or null, (int32)

The 1-indexed page number to fetch

pageSizeinteger or null, (int32)

The page size number to fetch

IncludeCustomerboolean

If true, returns all results for this customer. Valid for senior users only.

ProductsArray of strings or null(ConnectIdentityProduct)

The array of products to include

Below is a list of Definitions for the ENUM

  • 0 - Consumer
  • 1 - Id
  • 2 - AML
  • 3 - Bank Match
  • 4 - AML with Bank Match
Example:Products=AML
DateFromstring or null, (date-time)

The earliest date to include

DateTostring or null, (date-time)

The latest date to include

Keywordstring or null

Include this string

Resultstring or null

Return only items with this result

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/localSolutions/GB/identitysearch/history?page=0&pageSize=0&IncludeCustomer=true&Products=AML&DateFrom=2019-08-24T14%3A15%3A22Z&DateTo=2019-08-24T14%3A15%3A22Z&Keyword=string&Result=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
totalCountinteger, (int32)
dataArray of objects or null(ConnectIdentityIdentityHistoryItem)
messagestring or null
errorsobject or null
Response
{ "totalCount": 0, "data": [ {} ], "message": "string", "errors": { "property1": [], "property2": [] } }