Elasticsearch ​
Index, search, and manage documents and clusters with the Elasticsearch API.
| Detail | Value |
|---|---|
| Category | Monitoring |
| Base URL | https://elasticsearch.example.com:9200 |
| Authentication | API Key |
| Endpoints | 8 |
| Connector key | elastic |
Using Elasticsearch in a workflow ​
- Go to Connections and click New Connection.
- Pick Elasticsearch from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET /_cluster/health | Get cluster health |
| GET /_cat/indices | List indices |
| PUT /{index} | Create an index |
| DELETE /{index} | Delete an index |
| GET /{index}/_doc/{id} | Get a document |
| PUT /{index}/_doc/{id} | Index a document |
| POST /{index}/_search | Search documents |
| GET /{index}/_count | Count documents |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.