Sign in

Trigger build with parameters

documented

Trigger a new build for the given job with form parameters.

POST /job/{job_name}/buildWithParametersJobsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://jenkins-ci.org/job/{{$job_name}}/buildWithParameters" \
  -X POST \
  -u "{{$jenkins_user}}:{{JENKINS-CI_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data "param1={{$param1}}&param2={{$param2}}"