Skip to main content
DELETE
DELETE /v1/services/pipelineServices/{id}

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

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

Delete by Name

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

Restore a Soft-Deleted Pipeline Service

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

Returns

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

Error Handling