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
Example request
{
"conf": {
"functions": [
{
"id": "aggregate_metrics"
}
]
}
}Response
The created Pipeline object in a single-item list.
Example response
{
"items": [
{
"conf": {
"functions": [
{
"id": "aggregate_metrics"
}
]
}
}
]
}