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.

ParameterTypeInputDescription

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.

JSON payload

"slides": [
 {
   "type": "slide",
   "slide_index": 0,
   "tags": [],
   "shapes": []
 },
 {
   "type": "slide",
   "slide_index": 0,
   "tags": [],
   "shapes": []
 }
]

Last updated