2021-06-22 02:13:40 -04:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: cat templates
|
2022-05-31 13:45:08 -04:00
|
|
|
parent: CAT API
|
2021-06-22 02:13:40 -04:00
|
|
|
grand_parent: REST API reference
|
|
|
|
nav_order: 70
|
|
|
|
has_children: false
|
|
|
|
---
|
|
|
|
|
|
|
|
# cat templates
|
2021-07-26 19:14:22 -04:00
|
|
|
Introduced 1.0
|
|
|
|
{: .label .label-purple }
|
2021-06-22 02:13:40 -04:00
|
|
|
|
|
|
|
The cat templates operation lists the names, patterns, order numbers, and version numbers of index templates.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```
|
|
|
|
GET _cat/templates?v
|
|
|
|
```
|
|
|
|
|
2022-10-06 12:50:04 -04:00
|
|
|
If you want to get information for a specific template or pattern:
|
2021-06-22 02:13:40 -04:00
|
|
|
|
|
|
|
```
|
2022-10-06 12:50:04 -04:00
|
|
|
GET _cat/templates/{name}
|
2021-06-22 02:13:40 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
## Path and HTTP methods
|
|
|
|
|
|
|
|
```
|
|
|
|
GET _cat/templates
|
|
|
|
```
|
|
|
|
|
|
|
|
## URL parameters
|
|
|
|
|
|
|
|
All cat templates URL parameters are optional.
|
|
|
|
|
2022-06-27 18:09:21 -04:00
|
|
|
In addition to the [common URL parameters]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/index), you can specify the following parameter:
|
2021-06-22 02:13:40 -04:00
|
|
|
|
|
|
|
Parameter | Type | Description
|
|
|
|
:--- | :--- | :---
|
2022-06-20 14:53:51 -04:00
|
|
|
local | Boolean | Whether to return information from the local node only instead of from the cluster manager node. Default is false.
|
|
|
|
cluster_manager_timeout | Time | The amount of time to wait for a connection to the cluster manager node. Default is 30 seconds.
|
2021-06-22 02:13:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
## Response
|
|
|
|
|
|
|
|
```
|
|
|
|
name | index_patterns order version composed_of
|
2022-06-20 14:53:51 -04:00
|
|
|
tenant_template | [opensearch-dashboards*] | 0 |
|
2021-06-22 02:13:40 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
To learn more about index templates, see [Index templates]({{site.url}}{{site.baseurl}}/opensearch/index-templates).
|