> For the complete documentation index, see [llms.txt](https://developers.docstudio.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.docstudio.com/object-reference/uuid-list-object.md).

# UUID list object

This document contains the UUID list response object.

### Used in

| Endpoint / Area                                | How it is used                   |
| ---------------------------------------------- | -------------------------------- |
| [Dictionaries](/api-reference/dictionaries.md) | Returns UUIDs of created records |

### Object example

```json
{
  "data": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "totalElements": 1
}
```

### Fields

| Field           | Type    | Required | Description          |
| --------------- | ------- | -------- | -------------------- |
| `data`          | array   | Yes      | Returned UUID values |
| `totalElements` | integer | Yes      | Returned UUID count  |

{% hint style="info" %}
Each `data` item is a UUID string.
{% endhint %}
