Browse Source

Docs: Adds documentation for indices.exists_template

Closes: #8657
Sebastian Ziebell 11 years ago
parent
commit
3a6c6f4b26
1 changed files with 15 additions and 0 deletions
  1. 15 0
      docs/reference/indices/templates.asciidoc

+ 15 - 0
docs/reference/indices/templates.asciidoc

@@ -94,6 +94,21 @@ curl -XGET localhost:9200/_template/
 --------------------------------------------------
 
 
+[float]
+[[indices-templates-exists]]
+=== Templates exists
+
+Used to check if the template exists or not. For example:
+
+[source,js]
+-----------------------------------------------
+curl -XHEAD localhost:9200/_template/template_1
+-----------------------------------------------
+
+The HTTP status code indicates if the template with the given name
+exists or not. A status code `200` means it exists, a `404` it does not.
+
+
 [float]
 [[multiple-templates]]
 === Multiple Template Matching