v51

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

Create a Pipeline within a Pack

Create a new Pipeline within the specified Pack.

post/p/{pack}/pipelines

Path parameters

packstring required

The <code>id</code> of the Pack.

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