Add Multiple Monitor Record

Version 1

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

URL Parameters

Field
Remark

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

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