Get index template API

Get index template API

This documentation is about legacy index templates, which are deprecated and will be replaced by the composable templates introduced in Elasticsearch 7.8. For information about composable templates, see Index templates.

New API reference

For the most up-to-date API details, refer to Index APIs.

Retrieves information about one or more index templates.

  1. resp = client.indices.get_template(
  2. name="template_1",
  3. )
  4. print(resp)
  1. response = client.indices.get_template(
  2. name: 'template_1'
  3. )
  4. puts response
  1. const response = await client.indices.getTemplate({
  2. name: "template_1",
  3. });
  4. console.log(response);
  1. GET /_template/template_1

Request

GET /_template/<index-template>

Prerequisites

  • If the Elasticsearch security features are enabled, you must have the manage_index_templates or manage cluster privilege to use this API.

Path parameters

<index-template>

(Required, string) Comma-separated list of index template names used to limit the request. Wildcard (*) expressions are supported.

To return all index templates, omit this parameter or use a value of _all or *.

Query parameters

flat_settings

(Optional, Boolean) If true, returns settings in flat format. Defaults to false.

local

(Optional, Boolean) If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the master node.

master_timeout

(Optional, time units) Period to wait for the master node. If the master node is not available before the timeout expires, the request fails and returns an error. Defaults to 30s. Can also be set to -1 to indicate that the request should never timeout.

Examples

Get multiple index templates

  1. resp = client.indices.get_template(
  2. name="template_1,template_2",
  3. )
  4. print(resp)
  1. response = client.indices.get_template(
  2. name: 'template_1,template_2'
  3. )
  4. puts response
  1. const response = await client.indices.getTemplate({
  2. name: "template_1,template_2",
  3. });
  4. console.log(response);
  1. GET /_template/template_1,template_2

Get index templates using a wildcard expression

  1. resp = client.indices.get_template(
  2. name="temp*",
  3. )
  4. print(resp)
  1. response = client.indices.get_template(
  2. name: 'temp*'
  3. )
  4. puts response
  1. const response = await client.indices.getTemplate({
  2. name: "temp*",
  3. });
  4. console.log(response);
  1. GET /_template/temp*

Get all index templates

  1. resp = client.indices.get_template()
  2. print(resp)
  1. response = client.indices.get_template
  2. puts response
  1. const response = await client.indices.getTemplate();
  2. console.log(response);
  1. GET /_template