Skip to main content
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"
}