Update a filter Added in 6.4.0
Updates the description of a filter, adds items, or removes items from the list.
Path parameters
-
A string that uniquely identifies a filter.
Body Required
-
add_items array[string]
The items to add to the filter.
-
description string
A description for the filter.
-
remove_items array[string]
The items to remove from the filter.
POST /_ml/filters/{filter_id}/_update
curl \
-X POST http://api.example.com/_ml/filters/{filter_id}/_update \
-H "Content-Type: application/json" \
-d '{"add_items":["string"],"description":"string","remove_items":["string"]}'
Request examples
{
"add_items": [
"string"
],
"description": "string",
"remove_items": [
"string"
]
}
Response examples (200)
{
"description": "string",
"filter_id": "string",
"items": [
"string"
]
}