Replacing tags - Presentation Level
Replace text in curly brackets (tags) with string values at a presentation level.
To mark text for replacement in your PowerPoint, wrap them with double curly brackets.
This creates a
key
that you can assign a new stringvalue
to using a JSON payload.Insert the
key
andvalue
within thetags
object


Template Presentation
JSON Payload
{
"presentation": {
"template": "slides_as_template_tagging.pptx",
"export_version": "Pptx2010",
"tags": [
{
"Key": "presentation_title",
"Value": "My Presentation"
},
{
"Key": "presenter",
"Value": "John Doe"
},
{
"Key": "date",
"Value": "01 January 1999"
},
{
"Key": "client_name",
"Value": "Important Company LTD"
}
]
}
}
Last updated
Was this helpful?