[[ml-valid-detector]] ==== Validate Detectors The validate detectors API validates detector configuration information. ===== Request `POST _xpack/ml/anomaly_detectors/_validate/detector` ===== Description TBD //// ===== Path Parameters `job_id` (required):: (+string+) Identifier for the job //// ===== Request Body For a list of the properties that you can specify in the body of this API, see <>. //// ===== Responses 200 (EmptyResponse) The cluster has been successfully deleted 404 (BasicFailedReply) The cluster specified by {cluster_id} cannot be found (code: clusters.cluster_not_found) 412 (BasicFailedReply) The Elasticsearch cluster has not been shutdown yet (code: clusters.cluster_plan_state_error) //// ===== Examples The following example validates detector configuration information: [source,js] -------------------------------------------------- POST _xpack/ml/anomaly_detectors/_validate/detector { "function":"metric", "field_name":"responsetime", "by_field_name":"airline" } -------------------------------------------------- // CONSOLE // TEST[skip:todo] When the validation completes, you receive the following results: ---- { "acknowledged": true } ----