Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 580 Bytes

delete-ingest.md

File metadata and controls

28 lines (22 loc) · 580 Bytes
layout title nav_order redirect_from
default
Delete pipeline
13
/opensearch/rest-api/ingest-apis/delete-ingest/
/api-reference/ingest-apis/delete-ingest/

Delete pipeline

Introduced 1.0 {: .label .label-purple }

Use the following request to delete a pipeline.

To delete a specific pipeline, pass the pipeline ID as a parameter:

DELETE /_ingest/pipeline/<pipeline-id>

{% include copy-curl.html %}

To delete all pipelines in a cluster, use the wildcard character (*):

DELETE /_ingest/pipeline/*

{% include copy-curl.html %}