> ## Documentation Index
> Fetch the complete documentation index at: https://doc-test-my.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Documents Entity

> Know about documents entity parameters and their description.

The Documents entity has the following parameters:

<ResponseExample>
  ```json Entity theme={null}
  {
    "id":"doc_EsyWjHrfzb59Re",
    "entity":"document",
    "purpose":"dispute_evidence",
    "name":"file_19_18_2020.jpg",
    "mime_type":"image/png",
    "size":2863,
    "created_at":1590604200
  }
  ```
</ResponseExample>

<ResponseField name="id" type="string">
  The unique identifier of the document uploaded.
</ResponseField>

<ResponseField name="entity" type="string">
  Indicates the type of entity. In this case, it is `document`.
</ResponseField>

<ResponseField name="purpose" type="string">
  The reason you are uploading this document. Here, it is `dispute_evidence`.
</ResponseField>

<ResponseField name="size" type="integer">
  Indicates the size of the document in bytes.
</ResponseField>

<ResponseField name="mime_type" type="string">
  Indicates the nature and format in which the document is uploaded. Possible values are:

  * image/jpg
  * image/jpeg
  * image/png
  * application/pdf
</ResponseField>

<ResponseField name="created_at" type="integer">
  Unix timestamp at which the document was uploaded.
</ResponseField>
