Skip to content

Update A Batch Of individual AML search Hits

Request

Update a batch of Individual AML Search Hits.

Security
bearerToken
Path
searchIdstring, (uuid)required

Id of the search

Bodyapplication/json
itemsArray of objects(IndividualSearchUpdateHitRequest)
curl -i -X PUT \
  'https://connect.sandbox.creditsafe.com/v1/compliance/kyc-protect/searches/individuals/{searchId}/hits' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "items": [
      {
        "decision": "string",
        "note": "string",
        "hitId": "a8444036-cfe2-422f-9778-a43eef4cff86"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
failedArray of objects
successfulArray of objects
correlationIdstring

A unique ID assigned to this request.

Response
{ "failed": [ {} ], "successful": [ {} ], "correlationId": "string" }