OpenSearch/rest-api-spec/api/indices.exists_template.json

25 lines
653 B
JSON

{
"indices.exists_template": {
"documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html",
"methods": ["HEAD"],
"url": {
"path": "/_template/{name}",
"paths": ["/_template/{name}"],
"parts": {
"name": {
"type" : "string",
"required" : true,
"description" : "The name of the template"
}
},
"params": {
"local": {
"type": "boolean",
"description": "Return local information, do not retrieve the state from master node (default: false)"
}
}
},
"body": null
}
}