v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Candidate

candidate.listFraudChecks

Lists the fraud checks performed on a candidate.

Requires the candidatesRead permission.

post/candidate.listFraudChecks

Request body

candidateIdstring uuid required

The id of the candidate to fetch fraud checks for

cursorstring nullable

Opaque cursor indicating which page of results to fetch

limitnumber nullable

The maximum number of items to return. The maximum and default value is 100.

Example request

{
  "candidateId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "cursor": "G8",
  "limit": 25
}

Response

Responses from the candidate.listFraudChecks endpoint

OR

Example response

{
  "success": true,
  "results": [
    {
      "id": "f5b1e9a2-3c4d-4e5f-9a0b-1c2d3e4f5a6b",
      "candidateId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
      "applicationId": null,
      "createdAt": "2025-01-15T10:30:00.000Z",
      "fraudSignals": []
    }
  ],
  "moreDataAvailable": false,
  "syncToken": "sync-token-example"
}