Skip to main content
GET
/
api
/
v1
/
customers
/
{customerId}
/
persons
/
{personId}
/
screening
/
history
List customer person screening history
curl --request GET \
  --url http://localhost:45000/api/v1/customers/{customerId}/persons/{personId}/screening/history \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "screeningId": "<string>",
      "matchCount": 0,
      "dataVersion": "<string>",
      "createdAt": "<string>",
      "errorMessage": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

x-api-key
string
header
required

Nuvera API application secret key

Authorization
string
header
required

RS256 per-request signed JWT

Path Parameters

customerId
string
required
personId
string
required

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

default - application/json
items
object[]
required
nextCursor
string | null
required