Add One Monitor Record
This API can be used to create a new individual monitor record as well as updating an existing record. The maximum number of Monitor records in one worklist is 50 million
Last updated
This API can be used to create a new individual monitor record as well as updating an existing record. The maximum number of Monitor records in one worklist is 50 million
PUT https://okaydbdemo.innov8tif.com/ekyc/api/aml/v3/worklists/{worklistId}/individuals/{monitorRecordId}?apiKey={apiKey}
Content Type: application/json
worklistId *
worklistId will be provided
monitorRecordId *
User defined ID of the individual record to be created/updated.
apiKey *
apiKey is used for authentication.
{
"name": "Donald John Trump",
"addresses": [
{
"geography": "US",
"city": "New York City"
}
],
"dob": "1964-08-22",
"gender": "male"
} 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-217– Missing attribute countries or addresses in json request
MAPI-004– Missing attribute name in json request
message
Optional
Last updated
{
"status": "success",
"messageCode": null,
"message": "OK"
}{
"status": "error",
"messageCode": ”INVALID_API_KEY”,
"message": null
}