Skip to main content
DELETE
DELETE /v1/pipelines/{id}

Delete a Pipeline

Delete a pipeline by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.

Delete by ID

string
required
UUID of the pipeline to delete.
boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the pipeline. If false, the pipeline is soft-deleted and can be restored.

Delete by Name

Use DELETE /v1/pipelines/name/{fqn} to delete by fully qualified name.
string
required
Fully qualified name of the pipeline (e.g., sample_airflow.dbt_analytics_customers).
boolean
default:"false"
Recursively delete child entities.
boolean
default:"false"
Permanently delete the pipeline.

Restore a Soft-Deleted Pipeline

Use PUT /v1/pipelines/restore to restore a soft-deleted pipeline.
string
required
UUID of the soft-deleted pipeline to restore.
DELETE /v1/pipelines/{id}

Returns

Soft delete returns the pipeline object with deleted: true. Hard delete returns no content (204). Restore returns the restored pipeline object.

Error Handling