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

Version 1

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

Content Type: application/json

URL Parameters

Field
Remark

worklistId *

worklistId will be provided

monitorRecordId *

User defined ID of the individual record to be created/updated.

apiKey *

apiKey is used for authentication.

Sample Request Body

{
  "name": "Donald John Trump",
  "addresses": [
    {
      "geography": "US",
      "city": "New York City"
    }
  ],
  "dob": "1964-08-22",
  "gender": "male"
} 

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-217– Missing attribute countries or addresses in json request

  • MAPI-004– Missing attribute name in json request

message

Optional

Sample Response Body

Last updated