Add Multiple Monitor Record
Please note that exceeding the limit will result in failures when trying to create new records. Please ensure that the total number of Monitor records associated with a Worklist does not exceed the specified limit to avoid any potential issues
Version 1
PUT https://okaydbdemo.innov8tif.com/ekyc/api/aml/v3/worklists/{worklistId}/individuals?apiKey={apiKey}
URL Parameters
worklistId *
worklistId will be provided
apiKey *
apiKey is used for authentication.
Sample Request Body
{
"monitorRecords": [
{
"id": "1",
"referenceId": "1",
"name": "Donald John Trump",
"addresses": [
{
"geography": "US",
"city": "US"
}
],
"dob": "1970-08-22",
"gender": "male"
},
{
"id": "2",
"referenceId": "2",
"name": "Vladimir Putin",
"addresses": [
{
"geography": "RU",
"city": "RU"
}
],
"dob": "1970-08-22",
"gender": "male"
},
{
"id": "3",
"referenceId": "3",
"name": "Ahmad Hussain",
"addresses": [
{
"geography": "SY",
"city": "SY"
}
],
"dob": "1970-08-22",
"gender": "male"
}
]
}Response Body
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-004– Missing monitorRecords in json request
MAPI-213-monitorRecords cannot be duplicated ( duplicate Id in json request)
results
JSON array contains detail response
Sample Response Body
Last updated