Get saved object id through Search API of Kibana

Hi

I'm not sure what you mean by "extracting" from that JSON? if you want to find "Logs Dashboard", you should execute the following:

GET .kibana/_search
{
  "_source": [
    "dashboard.title"
  ],
  "query": {
    "term": {
      "dashboard.title": "Logs Dashboard"
    }
  }
}

Best,
Matthias

1 Like