list
Returns the complete list of indexes.
Query Syntax
HTTP
URL: http://kuzzle:7512/_list
Method: GET
Other protocols
{
"controller": "index",
"action": "list"
}
Response
Returns a indexes
array listing all existing index names.
{
"status": 200,
"error": null,
"controller": "index",
"action": "list",
"requestId": "<unique request identifier>",
"result": {
"indexes": [
"index_1",
"index_2",
"index_...",
"index_n"
]
}
}