DELETE /v1/services/pipelineServices/{id}
Delete a Pipeline Service
Delete a pipeline service by ID or name, with soft/hard delete options
DELETE
DELETE /v1/services/pipelineServices/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Delete a Pipeline Service
Delete a pipeline service by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.Delete by ID
UUID of the pipeline service to delete.
Recursively delete child entities (pipelines).
Permanently delete the pipeline service. If
false, the service is soft-deleted and can be restored.Delete by Name
UseDELETE /v1/services/pipelineServices/name/{fqn} to delete by fully qualified name.
Fully qualified name of the pipeline service (e.g.,
sample_airflow).Recursively delete child entities.
Permanently delete the pipeline service.
Restore a Soft-Deleted Pipeline Service
UsePUT /v1/services/pipelineServices/restore to restore a soft-deleted pipeline service.
UUID of the soft-deleted pipeline service to restore.
DELETE /v1/services/pipelineServices/{id}
Returns
Soft delete returns the pipeline service object withdeleted: true. Hard delete returns no content (204). Restore returns the restored pipeline service object.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to delete this pipeline service |
404 | NOT_FOUND | Pipeline service with given ID or FQN does not exist |