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.
slide_index
Integer
int
[required if slide_id not provided] Slide template number to use. Zero-based.
slide_id
Integer
int
[required if slide_index not provided] A unique identifier of a given slide. This ID is not displayed in the document, it's hidden in the xml.
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.
tags
Object
[optional] An array of tag objects. Shorthand way of updating keys (text) with values on a slide level.
JSON payload
"slides": [
{
"slide_index": int,
"shapes": [],
"notes": string,
"tags": []
},
{
"slide_id": int,
"shapes": [],
"notes": [],
"tags": []
}
]Last updated
Was this helpful?