[role="xpack"] [testenv="basic"] [[delete-transform]] === Delete {transform} API [subs="attributes"] ++++ Delete {transform} ++++ Deletes an existing {transform}. [[delete-transform-request]] ==== {api-request-title} `DELETE _transform/` [[delete-transform-prereqs]] ==== {api-prereq-title} * Before you can delete the {transform}, you must stop it. If the {es} {security-features} are enabled, you must have the following privileges: * `manage_transform` The built-in `transform_admin` role has this privilege. For more information, see <> and <>. [[delete-transform-path-parms]] ==== {api-path-parms-title} ``:: (Required, string) include::{docdir}/rest-api/common-parms.asciidoc[tag=transform-id] [[delete-transform-query-parms]] ==== {api-query-parms-title} `force`:: (Optional, boolean) When `true`, the {transform} is deleted regardless of its current state. The default value is `false`, meaning that the {transform} must be `stopped` before it can be deleted. [[delete-transform-examples]] ==== {api-examples-title} [source,console] -------------------------------------------------- DELETE _transform/ecommerce_transform -------------------------------------------------- // TEST[skip:setup kibana sample data] When the {transform} is deleted, you receive the following results: [source,console-result] ---- { "acknowledged" : true } ----