> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# contentControls.list

> List all content controls in the document with optional type/tag filtering.

## Summary

List all content controls in the document with optional type/tag filtering.

* Operation ID: `contentControls.list`
* API member path: `editor.doc.contentControls.list(...)`
* Mutates document: `no`
* Idempotency: `idempotent`
* Supports tracked mode: `no`
* Supports dry run: `no`
* Deterministic target resolution: `yes`

## Expected result

Returns a ContentControlsListResult with items and total count.

## Input fields

| Field         | Type    | Required | Description |
| ------------- | ------- | -------- | ----------- |
| `controlType` | string  | no       |             |
| `limit`       | integer | no       |             |
| `offset`      | integer | no       |             |
| `tag`         | string  | no       |             |

### Example request

```json theme={null}
{
  "controlType": "example",
  "tag": "example"
}
```

## Output fields

| Field   | Type      | Required | Description |
| ------- | --------- | -------- | ----------- |
| `items` | object\[] | yes      |             |
| `total` | integer   | yes      |             |

### Example response

```json theme={null}
{
  "items": [
    {}
  ],
  "total": 1
}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `INVALID_INPUT`
* `CAPABILITY_UNAVAILABLE`

## Non-applied failure codes

* None

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "controlType": {
        "type": "string"
      },
      "limit": {
        "type": "integer"
      },
      "offset": {
        "type": "integer"
      },
      "tag": {
        "type": "string"
      }
    },
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "items": {
        "items": {
          "type": "object"
        },
        "type": "array"
      },
      "total": {
        "type": "integer"
      }
    },
    "required": [
      "items",
      "total"
    ],
    "type": "object"
  }
  ```
</Accordion>
