v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-011189403.1 MB
pipelines

Update a Pipeline

Update the specified Pipeline.<br/><br/>Provide a complete representation of the Pipeline that you want to update in the request body.<br/><br/>This endpoint does not support partial updates. Cribl removes any omitted fields when updating the Pipeline.<br/><br/>Confirm that the configuration in your request body is correct before sending the request.<br/><br/>If the configuration is incorrect, the updated Pipeline might not function as expected.

patch/pipelines/{id}

Path parameters

idstring required

The <code>id</code> of the Pipeline to update.

Request body

idstring required

Unique identifier for the Pipeline.

Example request

{
  "conf": {
    "functions": [
      {
        "id": "aggregate_metrics"
      }
    ]
  }
}

Response

The updated Pipeline object in a single-item list.

countinteger required

number of items present in the items array

Example response

{
  "items": [
    {
      "conf": {
        "functions": [
          {
            "id": "aggregate_metrics"
          }
        ]
      }
    }
  ]
}