Skip to main content

Documentation Index

Fetch the complete documentation index at: https://superdoc-nick-sd-2070-add-content-controls-namespace-to-doc.mintlify.app/llms.txt

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

Alpha: Document API is currently alpha and subject to breaking changes.

Summary

Get details for a specific image by its stable ID.
  • Operation ID: images.get
  • API member path: editor.doc.images.get(...)
  • Mutates document: no
  • Idempotency: idempotent
  • Supports tracked mode: no
  • Supports dry run: no
  • Deterministic target resolution: yes

Expected result

Returns an ImageSummary with full image properties.

Input fields

FieldTypeRequiredDescription
imageIdstringyes

Example request

{
  "imageId": "example"
}

Output fields

No fields.

Example response

{}

Pre-apply throws

  • TARGET_NOT_FOUND
  • AMBIGUOUS_TARGET

Non-applied failure codes

  • None

Raw schemas

{
  "additionalProperties": false,
  "properties": {
    "imageId": {
      "type": "string"
    }
  },
  "required": [
    "imageId"
  ],
  "type": "object"
}
{
  "type": "object"
}