List pipelines
This will show all defined pipelines with included information about running state or if it is possible to schedule a job for this pipeline.
GET
/pipelines/
curl \
-X GET http://localhost:8080/pipelines/
Response examples (default)
{
"pipelines": [
{
"pipeline": "my_pipeline",
"running": true,
"schedulable": true
}
]
}
Response examples (default)
{
"pipelines": [
{
"pipeline": "my_pipeline",
"running": true,
"schedulable": true
}
]
}