v51

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

Create a Pipeline

Create a new Pipeline.

post/pipelines

Request body

idstring required

Unique identifier for the Pipeline.

Example request

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

Response

The created 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"
          }
        ]
      }
    }
  ]
}