Slide Settings

This page describes how to set your slide settings in the request data.

In the slide settings section you provide any information and data related to the slide itself. For example: id, question, base and layout.

Slide settings fields

If you want to provide more than 1 chart per slide you'll need to purchase the multichart feature.

Layout

Example in JSON

{
	"body": [{
		"slide": {
			"id": "desired-unique-id",
			"table_text": "Colors",
			"question_text": "What is your favourite color?",
			"base_text": "Base Colors",
			"layout": {
				"slide_master_index": 0,
				"slide_layout_index": 1
			}
		},
		"charts": [],
		"custom_obj": {}
	}]
}

If the provided .pptx template layout only has 1 chart placeholder and in the request you are sending more than 1 chart object for that slide, then only the first chart object from the request will be rendered.

Last updated