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

Summary

List all images in the document.
  • Operation ID: images.list
  • API member path: editor.doc.images.list(...)
  • Mutates document: no
  • Idempotency: idempotent
  • Supports tracked mode: no
  • Supports dry run: no
  • Deterministic target resolution: yes

Expected result

Returns an ImagesListResult with total count and image summaries.

Input fields

FieldTypeRequiredDescription
limitintegerno
offsetintegerno

Example request

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

Output fields

FieldTypeRequiredDescription
itemsobject[]yes
totalintegeryes

Example response

{
  "items": [
    {}
  ],
  "total": 1
}

Pre-apply throws

  • None

Non-applied failure codes

  • None

Raw schemas

{
  "additionalProperties": false,
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    }
  },
  "type": "object"
}
{
  "additionalProperties": false,
  "properties": {
    "items": {
      "items": {
        "type": "object"
      },
      "type": "array"
    },
    "total": {
      "type": "integer"
    }
  },
  "required": [
    "total",
    "items"
  ],
  "type": "object"
}