Endpoints to manage presentations
Name | Type | Description | Restrictions |
---|
format | string | The file format to export the presentation as - .PDF or .PPTX. | |
pdfOptions | PresentationToPdfOptions¦null | Optional options to export the presentation as a portable document file (.PDF). If no options are provided, all options default to False. | |
pptxOptions | PresentationToPptxOptions¦null | Optional options to export the presentation as a Microsoft Powerpoint File (.pptx). If no options are provided, all options default to False. | |
slides | [string] | The IDs of the slides of the presentation to export. Omit to export the entire presentation. | |
Property | Value |
---|
format | pdf |
format | pptx |
{
"format": "pptx",
"pptxOptions": {
"includeUnusedLayoutSlides": true
},
"slides": [
"a8b3adb687644b27fafcb3a9875f0f0d_18",
"a8b3adb687644b27fafcb3a9875f0f0d_19"
]
}
Name | Type | Description | Restrictions |
---|
includeAlternateRowFill | boolean | Whether to include alternate row fill in the presentation's tables when exporting to .PDF. False by default. | |
includeComments | boolean | Whether to include comments when exporting to .PDF. False by default. When True, all comments are included, even those already resolved. | |
includeDraftWatermark | boolean | Whether to include a "Draft" watermark when exporting to .PDF. False by default. | |
includeHyperlinks | boolean | Whether to include hyperlinks when exporting to .PDF. False by default. | |
includeLeaderDots | boolean | Whether to include leader dots when exporting to .PDF. False by default. | |
tagForWebAccessibility | boolean | Whether to tag for web accessibility when exporting to .PDF. False by default. | |
useCmykColorspace | boolean | Whether to use CMYK colorspace when exporting to .PDF. False by default. | |
{
"includeAlternateRowFill": true,
"includeComments": true,
"includeDraftWatermark": true,
"includeHyperlinks": true,
"includeLeaderDots": true,
"tagForWebAccessibility": true,
"useCmykColorspace": true
}
Name | Type | Description | Restrictions |
---|
includeUnusedLayoutSlides | boolean | Whether to include unused layout slides. False by default. | |
{
"includeUnusedLayoutSlides": true
}