Update A Single Individual Hit

This endpoint will update a single individual AML search hit by searchId and hitId.

SecuritybearerToken
Request
path Parameters
searchId
required
string <uuid>

Id of the search

hitId
required
string <uuid>

Id of the hit

Request Body schema: application/json
decision
string

The Decision of the Hit to be updated. The Decision can only be made once.
Allowed values are undecided,trueMatch and falsePositive

note
string

Note associated with the Hit

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404
409

Conflict

put/compliance/kyc-protect/searches/individuals/{searchId}/hits/{hitId}
Request samples
application/json
{
  • "decision": "string",
  • "note": "string"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "hitScore": 0,
  • "name": "string",
  • "match": "string",
  • "countries": [
    ],
  • "datasets": [
    ],
  • "decision": "string",
  • "note": "string",
  • "modifiedById": 0,
  • "modifiedBy": "string",
  • "modifiedAt": "2019-08-24T14:15:22Z",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "firstName": "string",
  • "middleName": "string",
  • "lastName": "string",
  • "gender": "string",
  • "datesOfBirth": [
    ],
  • "pepTier": "string",
  • "profileImages": [
    ],
  • "supersededHit": {
    },
  • "correlationId": "string"
}