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

> Event object returned for identity.documents_accepted and identity.documents_denied events

This object is returned by the [Get Event API](/api-reference/endpoints/events/get-event) when the event type is `identity.documents_accepted` or `identity.documents_denied`. Both event types share the same object shape; the outcome is conveyed by the event `type`.

## 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 identity whose EDD review concluded
</ResponseField>

<ResponseExample>
  ```json identity.documents_accepted theme={null}
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "identity_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9"
  }
  ```

  ```json identity.documents_denied theme={null}
  {
    "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
    "identity_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9"
  }
  ```
</ResponseExample>
