tags
Hierarchy: presentation > slides
The tags
object is used to located text within double curly brackets {{key}} on a slide level and replace with the provided value.
key
String
[required] Text to be replaced.
value
String
[required] Text replacing key
string
font_type
String
MS supported font names
[optional] Set font style. If not provided font type will be inherited.
font_size
Integer
[optional] Set font size. If not provided font size will be inherited.
font_color
String
[optional] Set font color. If not provided font color will be inherited.
font_underline
Boolean
[optional] Set font underline. If not provided font underline will be inherited.
font_bold
Boolean
[optional] Set font bold. If not provided font bold will be inherited.
font_italic
Boolean
[optional] Set font italic. If not provided font italic will be inherited.
JSON payload
"tags": [
{
"key": "<string>",
"value": "<string>",
"font_type": "<string>",
"font_size": numeric,
"font_color": "<string>",
"font_underline": boolean,
"font_bold": boolean,
"font_italic": boolean
},
{
"key": "<string>",
"value": "<string>",
"font_type": "<string>",
"font_size": numeric,
"font_color": "<string>",
"font_underline": boolean,
"font_bold": boolean,
"font_italic": boolean
}
]
Last updated
Was this helpful?