v1

latestSwagger 2.0MIT2026-07-17637.4 KB

Schedule a pipeline execution

This will create a job for execution of the specified pipeline and variables. If the pipeline is not schedulable (running and no queue / limit or concurrency exceeded) it will error.

post/pipelines/schedule

Request body

pipelinestring required

Pipeline name

variablesobject

Job variables

Example request

{
  "pipeline": "my_pipeline",
  "variables": {
    "databases": [
      "mysql",
      "postgresql"
    ],
    "tag_name": "v1.17.4"
  }
}