Create list data streams
Create .lists
and .items
data streams in the relevant space.
Responses
-
200 application/json; Elastic-Api-Version=2023-10-31
Successful response
-
400 application/json; Elastic-Api-Version=2023-10-31
Invalid input data response
-
401 application/json; Elastic-Api-Version=2023-10-31
Unsuccessful authentication response
-
403 application/json; Elastic-Api-Version=2023-10-31
Not enough privileges response
-
409 application/json; Elastic-Api-Version=2023-10-31
List data stream exists response
-
500 application/json; Elastic-Api-Version=2023-10-31
Internal server error response
curl \
--request POST 'http://localhost:5622/api/lists/index' \
--header "Authorization: $API_KEY"
{
"acknowledged": true
}
{
"error": "string",
"message": "string",
"statusCode": 42
}
{
"message": "string",
"status_code": 42
}
{
"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]\n",
"statusCode": 401
}
{
"error": "string",
"message": "string",
"statusCode": 42
}
{
"message": "data stream: \\\".lists-default\\\" and \\\".items-default\\\" already exists",
"status_code": 409
}
{
"message": "Internal Server Error",
"status_code": 500
}