<div dir="ltr">Hello,<br><br>I am trying to schedule builds using HTTP POST (as per <a href="http://docs.buildbot.net/latest/developer/rest.html#controlling">http://docs.buildbot.net/latest/developer/rest.html#controlling</a>). It is working fine except that in the properties, I am not able to set the value for a scheduler parameter which is of the type BooleanParameter (<a href="https://docs.buildbot.net/current/manual/cfg-schedulers.html#booleanparameter">https://docs.buildbot.net/current/manual/cfg-schedulers.html#booleanparameter</a>). How do I specify the value for the variable of type BooleanParameter in my HTTP POST request?<br><br><br>e.g.: <br>"run-custom-tests" is BooleanParameter i want to set to True. Following doesn't set <span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">"run-custom-tests" variable:</span><br><br>curl --data '{"id": 97, "jsonrpc": "2.0", "method": "force", "params": {"revision": "229356", <b>"checkbox": "run-custom-tests"</b>}' <a href="http://build.example.org/api/v2/forceschedulers/force-trunk-tester">http://build.example.org/api/v2/forceschedulers/force-trunk-tester</a> --header "Content-Type:application/json"<br><br>curl --data '{"id": 97, "jsonrpc": "2.0", "method": "force", "params": {"revision": "229356", <b>"run-custom-tests": "true"</b>}' <a href="http://build.example.org/api/v2/forceschedulers/force-trunk-tester">http://build.example.org/api/v2/forceschedulers/force-trunk-tester</a> --header "Content-Type:application/json"<br><br><br>Thanks<br>Aakash<br></div>