Scan a PowerPoint (.pptx) template to identify placeholders, such as {Name} or {Date}, and the context in which each appears.
A placeholder is a marker the user puts in the template to indicate where dynamic data should be inserted. By default this endpoint takes text marked with braces as a placeholder, but you can follow any convention you like and use the placeholderPattern parameter to override the default.
On success, the response will be a JSON array of objects, each representing a placeholder found in the template.
[
{
"placeholder": "{askingPrice}",
"type": "shapeText"
},
{
"placeholder": "{customerLogo}",
"type": "image"
}
]
Each object contains:
On failure, the response will be a JSON object with an errors array containing one or more error messages.
{
"errors": [
"Missing 'template' query parameter"
]
}