Get status of value list data streams
Verify that .lists
and .items
data streams exist.
Responses
-
200 application/json
Successful response
-
400 application/json
Invalid input data response
-
401 application/json
Unsuccessful authentication response
-
403 application/json
Not enough privileges response
-
404 application/json
List data stream(s) not found response
-
500 application/json
Internal server error response
GET
/api/lists/index
curl \
--request GET https://localhost:5601/api/lists/index
Response examples (200)
{
"list_index": true,
"list_item_index": true
}
Response examples (400)
Security_lists_api_platformerrorresponse
{
"error": "string",
"message": "string",
"statusCode": 42
}
{
"message": "string",
"status_code": 42
}
Response examples (401)
{
"error": "Unauthorized",
"message": "[security_exception\\n\\tRoot causes:\\n\\t\\tsecurity_exception: unable to authenticate user [elastic] for REST request [/_security/_authenticate]]: unable to authenticate user [elastic] for REST request [/_security/_authenticate]",
"statusCode": 401
}
Response examples (403)
{
"error": "string",
"message": "string",
"statusCode": 42
}
Response examples (404)
{
"message": "string",
"status_code": 42
}
Response examples (500)
{
"message": "Internal Server Error",
"status_code": 500
}