slides

Hierarchy: presentation > slides

Each slide object will result in a single slide in the output presentation. Multiple slide objects may point to the same template slide number, in which case that template slide will be reused multiple times.

Parameter
Type
Input
Description

type

String

slide

[optional] Type of slide template to use

slide_index

Integer

int

[required] Slide template number to use. Zero-based.

tags

Object

[optional] An array of tag objects. Shorthand way of updating keys (text) with values on a slide level.

shapes

Object

[optional] An array of shape objects. See textbox, table, chart, image.

notes

String or Object

[optional] Represents slide notes.

- String: A simple way to display plain text in the slide notes.

- Object: Use for advanced formatting by defining text chunks. See the text object structure.

JSON payload

"slides": [
 {
   "type": "slide",
   "slide_index": int,
   "tags": [],
   "shapes": [],
   "notes": string
 },
 {
   "type": "slide",
   "slide_index": int,
   "tags": [],
   "shapes": [],
   "notes": []
 }
]

Last updated

Was this helpful?