
Elasticsearch Request
CertifiedCall Elasticsearch endpoint
Elasticsearch Request
Call Elasticsearch endpoint
Performs an arbitrary HTTP request through the configured connection. Supports query parameters and optional JSON body; useful for endpoints not covered by dedicated tasks.
type: io.kestra.plugin.elasticsearch.RequestExamples
Inserting a document in an index using POST request
id: elasticsearch_request
namespace: company.team
tasks:
- id: request_post
type: io.kestra.plugin.elasticsearch.Request
connection:
hosts:
- "http://localhost:9200"
method: "POST"
endpoint: "my_index/_doc/john"
body:
name: "john"
Searching for documents using GET request
id: elasticsearch_request
namespace: company.team
tasks:
- id: request_get
type: io.kestra.plugin.elasticsearch.Request
connection:
hosts:
- "http://localhost:9200"
method: "GET"
endpoint: "my_index/_search"
parameters:
q: 'name:"John Doe"'
Deleting document using DELETE request
id: elasticsearch_request
namespace: company.team
tasks:
- id: request_delete
type: io.kestra.plugin.elasticsearch.Request
connection:
hosts:
- "http://localhost:9200"
method: "DELETE"
endpoint: "my_index/_doc/<_id>"
Properties
connection *RequiredNon-dynamic
Elasticsearch connection
Connection settings shared by tasks; hosts are required.
endpoint *Requiredstring
Endpoint path
Relative path without scheme/host/port/prefix, e.g. my_index/_search.
body object
Request body
Map or JSON string rendered at runtime and sent as JSON.
method string
GETCONNECTCUSTOMDELETEGETHEADOPTIONSPATCHPOSTPUTTRACEHTTP method
Defaults to GET.
parameters object
Query parameters
Optional key/value query string pairs.
routing string
Custom shard routing
Optional routing key hashed to pick the shard instead of using the document id.
Outputs
response object
Response body
status integer
HTTP status code