> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paxos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# identity_control

> Event object returned for identity control events

This object is returned by the [Get Event API](/api-reference/endpoints/events/get-event) when the event type is `identity.control.created` or `identity.control.deleted`.

## Object Fields

<ResponseField name="id" type="string" required>
  Unique identifier for this event object
</ResponseField>

<ResponseField name="identity_id" type="string" required>
  Identifier for the affected identity
</ResponseField>

<ResponseField name="control_id" type="string" required>
  Identifier for the control that was created or deleted
</ResponseField>

<ResponseField name="control_type" type="string" required>
  The type of control applied to the identity

  **Available options:** `SELL_ONLY`, `CLOSED`, `FROZEN`, `DORMANT`
</ResponseField>

<ResponseField name="set_by" type="string" required>
  Indicates who set the control

  **Available options:** `PAXOS`, `CLIENT`
</ResponseField>

<ResponseField name="is_overridable" type="boolean" required>
  Whether the control can be overridden by a client
</ResponseField>

<ResponseField name="reason_code" type="string" required>
  The reason the control was created

  **Available options:** `OTHER`, `END_USER_REQUEST`, `INACTIVITY`, `COMPLIANCE_KYC`, `COMPLIANCE_EDD`, `COMPLIANCE_SCREENING`, `COMPLIANCE_INVESTIGATION`, `COMPLIANCE_INCOMPLETE`, `RISK_FRAUD`, `LEGAL_ORDER`, `ADMINISTRATIVE`
</ResponseField>

<ResponseExample>
  ```json Example theme={null}
  {
    "id": "d840cf31-352f-4190-a476-7522bf3eafda",
    "identity_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9",
    "control_id": "87654321-5555-4444-3333-210987654321",
    "control_type": "DORMANT",
    "set_by": "PAXOS",
    "is_overridable": false,
    "reason_code": "INACTIVITY"
  }
  ```
</ResponseExample>
