presentation

The presentation object is the root object. Below are the parameters and objects within it:

ParameterTypeInputDescription

template

String

[required] Name of template presentation to build the new presentation from, must match the uploaded file in API management tool (e.g. Postman).

export_version

String

Pptx2007,

Pptx2010,

Pptx2013,

PDF

[optional] File format the output presentation should use.

resultFileName

String

[optional] Name of output presentation.

slides

Object

[optional] An array of slide objects.

JSON Payload

{
  "presentation": {
    "template": "string",
    "export_version": "Pptx2013",
    "resultFileName": "string",
    "slides": []
  }
}

Last updated