Skip to main content

Documentation Index

Fetch the complete documentation index at: https://superdoc-caio-pizzol-sd-3104-metadata-api.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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

FieldTypeRequiredDescription
limitintegerno
offsetintegerno
rootNamespacestringno
schemaRefstringno

Example request

{
  "limit": 50,
  "offset": 0
}

Output fields

No fields.

Example response

{}

Pre-apply throws

  • CAPABILITY_UNAVAILABLE
  • INVALID_INPUT

Non-applied failure codes

  • None

Raw schemas

{
  "additionalProperties": false,
  "properties": {
    "limit": {
      "minimum": 1,
      "type": "integer"
    },
    "offset": {
      "minimum": 0,
      "type": "integer"
    },
    "rootNamespace": {
      "type": "string"
    },
    "schemaRef": {
      "type": "string"
    }
  },
  "type": "object"
}
{
  "type": "object"
}