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

> Event object returned for identity.documents_required events

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

## 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 requiring documents
</ResponseField>

<ResponseField name="required_documents" type="array" required>
  List of required document types. Values in this array correspond to the `document_type` parameter in the [Document Upload API](/api-reference/endpoints/identity-documents/document-upload#body-document-types).
</ResponseField>

<ResponseExample>
  ```json Example theme={null}
  {
    "id": "d840cf31-352f-4190-a476-7522bf3eafda",
    "identity_id": "4fd025ab-f29f-47e6-a02e-df90a61c7ec9",
    "required_documents": ["PROOF_OF_ADDRESS", "PROOF_OF_FUNDS"]
  }
  ```
</ResponseExample>
