Path parameters

  • name string Required

    The name of the search application

Responses

GET /_application/search_application/{name}
curl \
 --request GET http://api.example.com/_application/search_application/{name} \
 --header "Authorization: $API_KEY"
Response examples (200)
A sucessful response from `GET _application/search_application/my-app/`.
{
  "name": "my-app",
  "indices": [ "index1", "index2" ],
  "updated_at_millis": 1682105622204,
  "template": {
    "script": {
      "source": {
        "query": {
          "query_string": {
            "query": "{{query_string}}",
            "default_field": "{{default_field}}"
          }
        }
      },
      "lang": "mustache",
      "options": {
        "content_type": "application/json;charset=utf-8"
      },
      "params": {
        "query_string": "*",
        "default_field": "*"
      }
    }
  }
}