DELETE /v1/pipelines/{id}
Delete a Pipeline
Delete a pipeline by ID or name, with soft/hard delete options
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
UUID of the pipeline to delete.
Recursively delete child entities.
Permanently delete the pipeline. If
false, the pipeline is soft-deleted and can be restored.Delete by Name
UseDELETE /v1/pipelines/name/{fqn} to delete by fully qualified name.
Fully qualified name of the pipeline (e.g.,
sample_airflow.dbt_analytics_customers).Recursively delete child entities.
Permanently delete the pipeline.
Restore a Soft-Deleted Pipeline
UsePUT /v1/pipelines/restore to restore a soft-deleted pipeline.
UUID of the soft-deleted pipeline to restore.
DELETE /v1/pipelines/{id}
Returns
Soft delete returns the pipeline object withdeleted: true. Hard delete returns no content (204). Restore returns the restored pipeline object.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to delete this pipeline |
404 | NOT_FOUND | Pipeline with given ID or FQN does not exist |