﻿---
title: Elasticsearch action steps
description: Learn about Elasticsearch action steps for searching, indexing, and managing data in workflows.
url: https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/workflows/steps/elasticsearch
products:
  - Elastic Cloud Enterprise
  - Elastic Cloud Hosted
  - Elastic Cloud Serverless
  - Elastic Cloud on Kubernetes
  - Elastic Stack
  - Elasticsearch
  - Kibana
applies_to:
  - Elastic Cloud Serverless: Preview
  - Elastic Stack: Preview since 9.3
---

# Elasticsearch action steps
Elasticsearch actions are built-in steps that allow your workflows to interact directly with Elasticsearch APIs. You can search, index, update, and delete documents, manage indices, and perform any other operation supported by the Elasticsearch REST API.
All Elasticsearch actions are automatically authenticated using the permissions or API key of the user executing the workflow.
There are two ways to use Elasticsearch actions:
- [Named actions](#named-actions): Structured actions that map directly to specific Elasticsearch API endpoints
- [Generic request actions](#generic-request-actions): Actions that provide full control over the HTTP request for advanced use cases


## Named actions

Named actions provide a structured way to call specific Elasticsearch endpoints. The action type maps directly to the Elasticsearch API.
To view the available named actions, click **Actions menu** and select **Elasticsearch**. For operations that are not available as a named action, use the [generic request action](#generic-request-actions).
The following table shows some examples:

| Action type                    | Elasticsearch operation                                                                                                          |
|--------------------------------|----------------------------------------------------------------------------------------------------------------------------------|
| `elasticsearch.search`         | `POST /<index>/_search` ([Run a search](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search))           |
| `elasticsearch.update`         | `POST /<index>/_update/<id>` ([Update a document](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-update)) |
| `elasticsearch.indices.create` | `PUT /<index>` ([Create an index](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-create))         |

The parameters you provide in the `with` block are passed as the body or query parameters of the API request. The following examples demonstrate common use cases.

### Example: Search for documents

The `elasticsearch.search` action searches for documents in the specified index. The `query` parameter is passed directly to the [Run a search API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search).
```yaml
steps:
  - name: search_for_alerts
    type: elasticsearch.search
    with:
      index: ".alerts-security.attack.discovery*"
      query:
        bool:
          filter:
            - term:
                kibana.alert.severity: "critical"
```


### Example: Update a document

The `elasticsearch.update` action partially updates a document by its ID. The `doc` parameter specifies the fields to add or modify.
```yaml
steps:
  - name: addMetadata
    type: elasticsearch.update
    with:
      index: national-parks-index
      id: "{{ foreach.item._id }}"
      doc:
        last_processed: "{{ execution.startedAt }}"
        workflow_run: "{{ execution.id }}"
        category_uppercase: "{{ foreach.item._source.category | upcase }}"
```


### Example: Create an index

The `elasticsearch.indices.create` action creates a new index with optional settings and mappings.
```yaml
  - name: create_parks_index
    type: elasticsearch.indices.create
    with:
      index: "{{ consts.indexName }}"
      mappings:
        properties:
          name: { type: text }
          category: { type: keyword }
          description: { type: text }
```


## Generic request actions

For advanced use cases or for accessing [Elasticsearch APIs](https://www.elastic.co/docs/api/doc/elasticsearch/) that do not have a named action, use the generic `elasticsearch.request` type. This gives you full control over the HTTP request.
<note>
  We recommend using named actions whenever possible. They are more readable and provide a stable interface for common operations.
</note>

Use the following parameters in the `with` block to configure the request:

| Parameter | Required               | Description                                                             |
|-----------|------------------------|-------------------------------------------------------------------------|
| `method`  | No (defaults to `GET`) | The HTTP method (`GET`, `POST`, `PUT`, or `DELETE`)                     |
| `path`    | Yes                    | The API endpoint path (for example, `/_search`, `/_data_stream/<name>`) |
| `body`    | No                     | The JSON request body                                                   |
| `query`   | No                     | An object representing URL query string parameters                      |


### Example: Get data stream

This example uses the generic request to call the `GET /_data_stream/<name>` endpoint ([Get data stream](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-get-data-stream)).
```yaml
steps:
  - name: get_data_stream
    type: elasticsearch.request
    with:
      method: GET
      path: /_data_stream/my-data-stream
```


### Example: Delete documents by query

This example uses the generic request to call the `POST /<index>/_delete_by_query` endpoint ([Delete documents](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-delete-by-query)).
```yaml
steps:
  - name: delete_old_documents
    type: elasticsearch.request
    with:
      method: POST
      path: /my-index/_delete_by_query
      body:
        query:
          range:
            "@timestamp":
              lt: "now-30d"
```


## Combine actions

The following example demonstrates how to combine multiple Elasticsearch actions in a workflow. It searches for documents and then iterates over the results to delete each one.
```yaml
name: Search and Delete Documents
triggers:
  - type: manual
steps:
  - name: search_for_docs
    type: elasticsearch.search
    with:
      index: ".alerts-security.attack.discovery.alerts-default"
      query:
        term:
          host.name: "compromised-host"

  - name: delete_found_docs
    type: foreach
    # The search results are in steps.search_for_docs.output
    foreach: steps.search_for_docs.output.hits.hits
    steps:
      - name: delete_each_doc
        type: elasticsearch.request
        with:
          method: DELETE
          # The 'item' variable holds the current document from the loop
          path: "/{{ item._index }}/_doc/{{ item._id }}"
```

Key concepts in this example:
- [Data flow](/elastic/docs-builder/docs/3016/explore-analyze/workflows/data#workflows-data-flow): The output of the `search_for_docs` step is available to subsequent steps at `steps.search_for_docs.output`.
- [Foreach loop](https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/workflows/steps/foreach): The `foreach` step iterates over the `hits.hits` array from the search results.
- [Item variable](https://www.elastic.co/elastic/docs-builder/docs/3016/explore-analyze/workflows/data/templating): Inside the loop, the `item` variable holds the current document being processed, allowing you to access its fields such as `item._index` and `item._id`.