API Reference

Presentations

Endpoints to manage presentations

PresentationExport

Properties

NameTypeDescriptionRestrictions
formatstringThe file format to export the presentation as - .PDF or .PPTX.
pdfOptionsPresentationToPdfOptions¦nullOptional options to export the presentation as a portable document file (.PDF). If no options are provided, all options default to False.
pptxOptionsPresentationToPptxOptions¦nullOptional 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.

Enumerated Values

PropertyValue
formatpdf
formatpptx

Example

{
  "format": "pptx",
  "pptxOptions": {
    "includeUnusedLayoutSlides": true
  },
  "slides": [
    "a8b3adb687644b27fafcb3a9875f0f0d_18",
    "a8b3adb687644b27fafcb3a9875f0f0d_19"
  ]
}

PresentationToPdfOptions

Properties

NameTypeDescriptionRestrictions
includeAlternateRowFillbooleanWhether to include alternate row fill in the presentation's tables when exporting to .PDF. False by default.
includeCommentsbooleanWhether to include comments when exporting to .PDF. False by default. When True, all comments are included, even those already resolved.
includeDraftWatermarkbooleanWhether to include a "Draft" watermark when exporting to .PDF. False by default.
includeHyperlinksbooleanWhether to include hyperlinks when exporting to .PDF. False by default.
includeLeaderDotsbooleanWhether to include leader dots when exporting to .PDF. False by default.
tagForWebAccessibilitybooleanWhether to tag for web accessibility when exporting to .PDF. False by default.
useCmykColorspacebooleanWhether to use CMYK colorspace when exporting to .PDF. False by default.

Example

{
  "includeAlternateRowFill": true,
  "includeComments": true,
  "includeDraftWatermark": true,
  "includeHyperlinks": true,
  "includeLeaderDots": true,
  "tagForWebAccessibility": true,
  "useCmykColorspace": true
}

PresentationToPptxOptions

Properties

NameTypeDescriptionRestrictions
includeUnusedLayoutSlidesbooleanWhether to include unused layout slides. False by default.

Example

{
  "includeUnusedLayoutSlides": true
}