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

# The Dispute Document object

The `DisputeDocument` object represents a file you upload as evidence for a dispute. Fintoc returns it in the response when you upload a document and in the `documents` array of the `Dispute` object.

| Attribute      | Type             | Description                                                                                                   |
| :------------- | :--------------- | :------------------------------------------------------------------------------------------------------------ |
| `id`           | `string`         | Unique identifier of the dispute document. Prefixed with `cbd_`.                                              |
| `object`       | `string`         | Type of the object. Always `dispute_document`.                                                                |
| `content_type` | `string \| null` | Media type of the uploaded file, for example `application/pdf`. `null` when Fintoc cannot determine the type. |
| `created_at`   | `string`         | ISO 8601 datetime in UTC when the document was uploaded.                                                      |
| `dispute_id`   | `string`         | Identifier of the dispute this document belongs to.                                                           |
| `filename`     | `string`         | Name of the uploaded file.                                                                                    |
| `size`         | `integer`        | Size of the uploaded file in bytes.                                                                           |

```json Dispute Document Object theme={null}
{
  "id": "cbd_8anBm9YpVwXzKqL2",
  "object": "dispute_document",
  "content_type": "application/pdf",
  "created_at": "2024-01-16T17:04:10.284Z",
  "dispute_id": "cb_8anBm9YpVwXzKqL2",
  "filename": "evidence.pdf",
  "size": 102400
}
```
