[role="xpack"] [testenv="platinum"] [[ml-delete-datafeed]] === Delete {dfeeds} API [subs="attributes"] ++++ Delete {dfeeds} ++++ Deletes an existing {dfeed}. [[ml-delete-datafeed-request]] ==== {api-request-title} `DELETE _ml/datafeeds/` [[ml-delete-datafeed-desc]] ==== {api-description-title} NOTE: Unless the `force` parameter is used, the {dfeed} must be stopped before it can be deleted. [[ml-delete-datafeed-path-parms]] ==== {api-path-parms-title} `feed_id` (required):: (string) Identifier for the {dfeed} [[ml-delete-datafeed-query-parms]] ==== {api-query-parms-title} `force`:: (boolean) Use to forcefully delete a started {dfeed}; this method is quicker than stopping and deleting the {dfeed}. [[ml-delete-datafeed-prereqs]] ==== {api-prereq-title} You must have `manage_ml`, or `manage` cluster privileges to use this API. For more information, see {stack-ov}/security-privileges.html[Security privileges]. [[ml-delete-datafeed-example]] ==== {api-examples-title} The following example deletes the `datafeed-total-requests` {dfeed}: [source,js] -------------------------------------------------- DELETE _ml/datafeeds/datafeed-total-requests -------------------------------------------------- // CONSOLE // TEST[skip:setup:server_metrics_datafeed] When the {dfeed} is deleted, you receive the following results: [source,js] ---- { "acknowledged": true } ---- // TESTRESPONSE