Skip to Content

Delete Pipeline

DELETE/v0/pipelines/{pipeline_name}
Authentication
Parameters

Delete an existing pipeline by name.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name

Response

Pipeline successfully deleted
Request
curl -X DELETE '/v0/pipelines/{pipeline_name}' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
Pipeline must be fully stopped and cleared to be deleted
{ "message": "Cannot delete a pipeline which is not fully stopped. Stop the pipeline first fully by invoking the '/stop' endpoint.", "error_code": "DeleteRestrictedToFullyStopped", "details": null }