Get Detail of One Monitor Record

This endpoint will fetch the details for a specific individual monitor record.

Version 1

GEThttps://okaydbdemo.innov8tif.com/ekyc/api/aml/v3/worklists/{worklistId} /individuals/{monitorRecordId}?apiKey={apiKey}

Content Type: application/json

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. Mandatory.

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)

data

detail result

Sample Response Body

{
    "status": "success",
    "messageCode": null,
    "message": "Success",
    "data": {
        "name": "Donald John Trump",
        "addresses": [
            {
                "geography": "US",
                "city": "US"
            }
        ],
        "dob": "1970-08-22",
        "gender": "male",
        "openDatasets": [],
        "countries": [
            "US"
        ],
        "id": "1",
        "status": "screenedNoMatches",
        "openCount": 0,
        "falsePositiveCount": 0,
        "truePositiveCount": 0,
        "discardedCount": 0,
        "createdDateTimeISO": "2025-10-17T07:57:08.237Z",
        "lastUpdatedDateTimeISO": "2025-11-06T08:53:46.112Z",
        "lastNotificationDateISO": "2025-10-17"
    }
}

Last updated