Trigger build with parameters
documentedTrigger a new build for the given job with form parameters.
POST /job/{job_name}/buildWithParametersJobsno implementation yet0 runsNo 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}}¶m2={{$param2}}"