> For the complete documentation index, see [llms.txt](https://customer-api-docs.ibanera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://customer-api-docs.ibanera.com/callbacks/managee-kyc-updated.md).

# Managee KYC Updated

## Overview

Sent when the data submitted to create a managee is accepted or rejected. When the data provided is approved, the managee will be able to transact. Before this time most functionality will be disabled for the managee.

If managee data is rejected, they will not be allowed to transact. This is currently a final state, and you should check the data and retry by creating a new managee, or contact support.

## Data Object

<table><thead><tr><th width="260">Field</th><th>Description</th></tr></thead><tbody><tr><td>ManageesId</td><td>Id of the updated managee</td></tr><tr><td>VerificationStatus</td><td>New status: “Accepted” or “Rejected”</td></tr><tr><td>AcceptDate</td><td>Date of acceptance, or null</td></tr><tr><td>RejectDate</td><td>Date of rejection, or null</td></tr><tr><td>RejectReason</td><td>Reason for rejection, or null</td></tr></tbody></table>

## Data Example

```json
{
    "Id": "2c58ed48-67d2-4d8e-bbb1-548864773d2c", 
    "Type": "MANAGEE_KYC_UPDATED",
    "Data": {
        "ManageesId": 11049, 
        "VerificationStatus": "Accepted", 
        "AcceptDate": "2023-01-31T15:06:38.963", 
        "RejectReason": null,
        "RejectDate": null
    } 
}
```


---

# 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, and the optional `goal` query parameter:

```
GET https://customer-api-docs.ibanera.com/callbacks/managee-kyc-updated.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
