Retrieving Kibana Dashboards Name List

Hi,

I was using Elasticsearch to retrieve a list of all the Dashboards from Kibana. I updated some Dashboard names in Kibana, but I still get a list of the old names and not the new ones. Any ideas why this may occur? I have tried also restarting the Elasticsearch and Kibana Servers. Below is the query I use to get a list of the Dashboard Names. Is it caching?

http://localhost:9200/.kibana/dashboard/_search?pretty&size=1000&_source=id

Because the _id remains the original value, but the _source.title is what changes.

Awesome, Thanks that works!

Related question, Now I am just trying to sort it by that title. When I add the sort parameter as below:

http://localhost:9200/.kibana/dashboard/_search?pretty&size=1000&_source=title&sort=title:asc

It looks to split apart some of my titles and sort incorrectly on some of the spaces in my titles. It is like the sort is just picking one word to use as the sort criteria from the title rather then the whole title? ex.

"Accounts Payable" (_sort = "accounts")
"Building Permits and Inspections" (_sort="and")
"Social Assistance" (_sort ="assistance")
"Long Term Care" (_sort = "care")