Monitor Records Matches Auto Review

This endpoint allows clients to set initial reviews for newly created monitor records. This can be used to automatically close matches found using a search endpoint. The auto review can only be set fo

Version 1

PUT https://okaydbdemo.innov8tif.com/ekyc/api/aml/v3/worklists/{worklistId} /individuals/{monitorRecordId}/matches/auto-review?apiKey={apiKey}

URL Parameters

Field
Remark

worklistId *

The ID of the worklist where the individual record exists. Mandatory field

monitorRecordId *

The ID of the individual monitor record to retrieve

apiKey *

apiKey is used for authentication.

Sample Request Body

{
  "autoReviews": [
    {
      "qrCode": "3919221",
      "referenceId": "31",
      "status": "open",
      "clientRiskRating": "High-Risk",
      "clientComment": "Reviewed as true positive, no risk to the business.",
      "clientUserId": "test.abc"
    },
    {
      "qrCode": "854244",
      "clientComment": "Pending review."
    }
  ]
}

Response Body

Field
Remark

status

Indicate API status. Values can be success, error.

messageCode

Provide error details if status is error. Values can be:

  • INVALID_API_KEY – invalid api key.

  • MAPI-001– Resource not found (workflowId or monitorRecordId is not found)

result

Detailed results

Sample Response Body

Last updated