Body
-
id
string -
file
string -
params
object Key-value pairs used to replace Mustache variables in the template. The key is the variable name. The value is the variable value.
-
source
string An inline search template. It supports the same parameters as the search API's request body. These parameters also support Mustache variables. If no
id
or<templated-id>
is specified, this parameter is required.
POST
/_render/template
curl \
--request POST http://api.example.com/_render/template \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"id":"string","file":"string","params":{"additionalProperty1":{},"additionalProperty2":{}},"source":"string"}'
Request examples
{
"id": "string",
"file": "string",
"params": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"source": "string"
}
Response examples (200)
{
"template_output": {
"additionalProperty1": {},
"additionalProperty2": {}
}
}