DELETE /v1/pipelines/{id}
Delete a Pipeline
Soft delete or permanently remove a pipeline entity by UUID or fully qualified name, controlling cascade behavior and maintaining audit trails via the Collate REST API.
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
UseDELETE /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
UsePUT /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 withdeleted: true. Hard delete returns no content (204). Restore returns the restored pipeline object.