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, rows and columns.

Slide settings fields

In v1 version of this endpoint there is a relation of 1-to-1 between a slide and a chart.

Example in JSON

{
	"body": [{
		"id": "desired-unique-id",
		"table_text": "Demo",
		"question_text": "What is Demo?",
		"base_text": "A Demo text!",
		"rows": ["Yes", "No"],
		"columns": [{
			"text": "Work in Progress",
			"items": [{
				"text": "Does it work?",
				"base": 3.0,
				"data": [2.0, 1.0]
			}]
		}],
		"view_settings": {
			"slide_master_index": 0,
			"slide_layout_index": 0,
			"placeholder_index": 0,
			"chart_type": "bar"
		}
	}]
}

Last updated