| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | [role="xpack"][testenv="platinum"][[ml-delete-forecast]]=== Delete forecast API++++<titleabbrev>Delete forecast</titleabbrev>++++Deletes forecasts from a {ml} job.  ==== Request`DELETE _ml/anomaly_detectors/<job_id>/_forecast` +`DELETE _ml/anomaly_detectors/<job_id>/_forecast/<forecast_id>` +`DELETE _ml/anomaly_detectors/<job_id>/_forecast/_all`==== DescriptionBy default, forecasts are retained for 14 days. You can specify a different retention period with the `expires_in` parameter in the <<ml-forecast,forecast jobs API>>. The delete forecast API enables you to delete one or more forecasts before they expire.NOTE: When you delete a job its associated forecasts are deleted. For more information, see {stack-ov}/ml-overview.html#ml-forecasting[Forecasting the Future].==== Path Parameters`job_id` (required)::  (string) Identifier for the job.`forecast_id`::  (string) A comma-separated list of forecast identifiers.   If you do not specify this optional parameter or if you specify `_all`, the   API deletes all forecasts from the job. ==== Request Parameters`allow_no_forecasts`::  (boolean) Specifies whether an error occurs when there are no forecasts. In   particular, if this parameter is set to `false` and there are no forecasts   associated with the job, attempts to delete all forecasts return an error.   The default value is `true`.`timeout`::  (time units) Specifies the period of time to wait for the completion of the   delete operation. When this period of time elapses, the API fails and returns   an error. The default value is `30s`. For more information about time units,   see <<time-units>>.  ==== AuthorizationYou must have `manage_ml`, or `manage` cluster privileges to use this API.For more information, see {stack-ov}/security-privileges.html[Security Privileges].==== ExamplesThe following example deletes all forecasts from the `total-requests` job:[source,js]--------------------------------------------------DELETE _ml/anomaly_detectors/total-requests/_forecast/_all--------------------------------------------------// CONSOLE// TEST[skip:setup:server_metrics_openjob]If the request does not encounter errors, you receive the following result:[source,js]----{  "acknowledged": true}----// NOTCONSOLE
 |