DELETE
/
pipelines
/
{pipeline_id}
from mixpeek import Mixpeek

mixpeek = Mixpeek("API_KEY")

result = mixpeek.pipelines.delete(pipeline_id="pipeline_123")
{
  "success": true,
  "message": "<string>"
}

Pipelines are crucial in Mixpeek for processing objects in real-time. Deleting a pipeline removes it from the system and stops all associated processing.

To delete a pipeline, you’ll need the pipeline_id of the pipeline you wish to remove.

Request

pipeline_id
string
required

The unique identifier for the pipeline to be deleted.

Response

success
boolean
required

Indicates whether the deletion was successful.

message
string

Provides more detail about the result of the deletion operation.

from mixpeek import Mixpeek

mixpeek = Mixpeek("API_KEY")

result = mixpeek.pipelines.delete(pipeline_id="pipeline_123")