Proxies HTTP GET request to the clusteredit

Proxies HTTP GET request to the cluster. Requires that HTTP header X-Management-Request be specified. This endpoint is for management use and does not provide high performance.

Requestedit

GET /api/v1/clusters/elasticsearch/{cluster_id}/proxy/{elasticsearch_path}

Path parametersedit

Name Type Required Description

cluster_id

string

Y

Identifier for the Elasticsearch cluster

elasticsearch_path

string

Y

The URL part to proxy to the Elasticsearch cluster. Example: _search or _cat/indices?v&h=i,tm&s=tm:desc

Headersedit

Name Type Required Description

X-Management-Request

string

Y

X-Management-Request header value. Needs to be set to true

Responsesedit

200

The request has been processed successfully through the proxy

404

(BasicFailedReply) The cluster specified by {cluster_id} cannot be found (code: 'clusters.cluster_not_found')

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request exampleedit

curl -XGET {{hostname}}/api/v1/clusters/elasticsearch/{cluster_id}/proxy/{elasticsearch_path} \
-u $CLOUD_USER:$CLOUD_KEY \
-H X-Management-Request: string