PUT
/
pipelines
/
{pipeline_id}
curl --location 'https://api.mixpeek.com/pipelines/{pipeline_id}' \
--header 'Authorization: Bearer API_KEY' \
--header 'Content-Type: application/json' \
--request 'PUT' \
--data '{
    "pipeline_name": "Enhanced Data Processing",
    "enabled": true
}'
{
  "status": "<string>",
  "message": "<string>"
}

Request

pipeline_id
string
required

The unique identifier of the pipeline to be updated.

pipeline_name
string

The new name to assign to the pipeline. This is optional and used only when renaming the pipeline.

enabled
boolean

Specifies whether the pipeline should be active or inactive. This is optional and can be used to enable or disable the pipeline.

Response

status
string
required

Indicates the result of the update operation, such as “updated”, “not found”, or “error”.

message
string

A descriptive message about the outcome of the update, providing additional details or error information.

curl --location 'https://api.mixpeek.com/pipelines/{pipeline_id}' \
--header 'Authorization: Bearer API_KEY' \
--header 'Content-Type: application/json' \
--request 'PUT' \
--data '{
    "pipeline_name": "Enhanced Data Processing",
    "enabled": true
}'