OpenSearch/docs/en/rest-api/ml/delete-datafeed.asciidoc

55 lines
1.1 KiB
Plaintext
Raw Normal View History

//lcawley Verified example output 2017-04-11
[[ml-delete-datafeed]]
=== Delete {dfeeds-cap}
The delete {dfeed} API enables you to delete an existing {dfeed}.
==== Request
`DELETE _xpack/ml/datafeeds/<feed_id>`
==== Description
NOTE: Unless the `force` parameter is used, the {dfeed} must be stopped before it can be deleted.
==== Path Parameters
`feed_id` (required)::
(string) Identifier for the {dfeed}
===== Query Parameters
`force`::
(boolean) Use to forcefully delete a started {dfeed}; this method is quicker than
stopping and deleting the {dfeed}.
===== Authorization
You must have `manage_ml`, or `manage` cluster privileges to use this API.
For more information, see <<privileges-list-cluster>>.
==== Examples
The following example deletes the `datafeed-it-ops` {dfeed}:
[source,js]
--------------------------------------------------
DELETE _xpack/ml/datafeeds/datafeed-it-ops
--------------------------------------------------
// CONSOLE
// TEST[skip:todo]
When the {dfeed} is deleted, you receive the following results:
[source,js]
----
{
"acknowledged": true
}
----