> For the complete documentation index, see [llms.txt](https://api2-ekycapis.innov8tif.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api2-ekycapis.innov8tif.com/okaydb/okaydb-all/aml-monitor/add-one-monitor-record.md).

# Add One Monitor Record

## Version 1

<mark style="color:green;">`PUT`</mark>` ``https://okaydbdemo.innov8tif.com/ekyc/api/aml/v3/worklists/{worklistId}/individuals/{monitorRecordId}?apiKey={apiKey}`

Content Type: `application/json`

#### URL Parameters

| Field                                              | Remark                                                          |
| -------------------------------------------------- | --------------------------------------------------------------- |
| worklistId <mark style="color:red;">\*</mark>      | worklistId will be provided                                     |
| monitorRecordId <mark style="color:red;">\*</mark> | User defined ID of the individual record to be created/updated. |
| apiKey <mark style="color:red;">\*</mark>          | apiKey is used for authentication.                              |

#### Sample Request Body

```json
{
  "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 | <p></p><p>Provide error details if status is error. Values can be: </p><ul><li>INVALID\_API\_KEY – invalid api key.</li><li>MAPI-217– Missing  attribute countries or addresses in json request</li><li>MAPI-004– Missing attribute name in json request</li></ul> |
| message     | Optional                                                                                                                                                                                                                                                           |

#### Sample Response Body

{% tabs %}
{% tab title="Success" %}

```json
{
    "status": "success",
    "messageCode": null,
    "message": "OK"
}
```

{% endtab %}

{% tab title="Error" %}

```json
{
    "status": "error",
    "messageCode": ”INVALID_API_KEY”,
    "message": null
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api2-ekycapis.innov8tif.com/okaydb/okaydb-all/aml-monitor/add-one-monitor-record.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
