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

# customXml.parts.list

> List Custom XML Data Storage Parts in the document, optionally filtered by root namespace or schema reference.

## Summary

List Custom XML Data Storage Parts in the document, optionally filtered by root namespace or schema reference.

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

## Expected result

Returns a CustomXmlPartsListResult with summary entries (no content); fetch content via get.

## Input fields

| Field           | Type    | Required | Description |
| --------------- | ------- | -------- | ----------- |
| `limit`         | integer | no       |             |
| `offset`        | integer | no       |             |
| `rootNamespace` | string  | no       |             |
| `schemaRef`     | string  | no       |             |

### Example request

```json theme={null}
{
  "limit": 50,
  "offset": 0
}
```

## Output fields

*No fields.*

### Example response

```json theme={null}
{}
```

## Pre-apply throws

* `CAPABILITY_UNAVAILABLE`
* `INVALID_INPUT`

## Non-applied failure codes

* None

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "limit": {
        "minimum": 1,
        "type": "integer"
      },
      "offset": {
        "minimum": 0,
        "type": "integer"
      },
      "rootNamespace": {
        "type": "string"
      },
      "schemaRef": {
        "type": "string"
      }
    },
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "type": "object"
  }
  ```
</Accordion>
