Replacing tags - Presentation Level

Replace text in curly brackets (tags) with string values at a presentation level.

  1. To mark text for replacement in your PowerPoint, wrap them with double curly brackets.

  2. This creates a key that you can assign a new string value to using a JSON payload.

  3. Insert the key and value within the tags 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