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

Get a single Custom XML Data Storage Part by itemID or package part name, including its full content. v1 partName targeting is limited to Word-style customXml/itemN.xml paths.
  • Operation ID: customXml.parts.get
  • API member path: editor.doc.customXml.parts.get(...)
  • Mutates document: no
  • Idempotency: idempotent
  • Supports tracked mode: no
  • Supports dry run: no
  • Deterministic target resolution: yes

Expected result

Returns a CustomXmlPartInfo with id, partName, namespaces, schemaRefs, and content; or null if not found.

Input fields

FieldTypeRequiredDescription
targetobject \objectyesOne of: object, object

Example request

{
  "target": {
    "id": "id-001"
  }
}

Output fields

Variant 1

No fields.

Variant 2

No fields.

Example response

{}

Pre-apply throws

  • TARGET_NOT_FOUND
  • CAPABILITY_UNAVAILABLE

Non-applied failure codes

  • None

Raw schemas

{
  "additionalProperties": false,
  "properties": {
    "target": {
      "oneOf": [
        {
          "additionalProperties": false,
          "properties": {
            "id": {
              "minLength": 1,
              "type": "string"
            }
          },
          "required": [
            "id"
          ],
          "type": "object"
        },
        {
          "additionalProperties": false,
          "properties": {
            "partName": {
              "minLength": 1,
              "type": "string"
            }
          },
          "required": [
            "partName"
          ],
          "type": "object"
        }
      ]
    }
  },
  "required": [
    "target"
  ],
  "type": "object"
}
{
  "oneOf": [
    {
      "type": "object"
    },
    {
      "type": "null"
    }
  ]
}