How to get api url to perform this action from my mobile app

Example :

DELETE index

PUT index/_doc/1
{
  "foo": "bar"
}
GET index/_search
{
  "query": {
    "match": {
      "foo": "bar"
    }
  }
}

from what api url can i perform this from my mobile app ?

I'm very new in this topic.

Be gentle with me.

Hello Gilles,

Those requests are part of the Elasticsearch document APIs. So they are not part of Kibana but of Elasticsearch. So you need the hostname of your Elasticsearch Url and Port (typically 9200) so this could look like: http://localhost:9200

Best regards
Wolfram

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.