Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Do you have plan to support json rest api? #4012

JerryLee ·

Hello,
As far as I know, QuickBuild doesn't support json rest api, now.
We found the documentation of RESTful API regarding 'Interact with Build Requests' like shown below.

Since QuickBuild 6.0.14, one can also trigger new build via GET request by accessing below url:
http://localhost:8810/rest/trigger?configuration_id=<configuration id>
Where <configuration id> should be replaced with identifier of a configuration. The response is of mime type text/plain and the content is XML representation of newly created request result. Note that this approach does not accept variables or promotions information.

Do you have plan to support json rest api?

Actually, we want to run with some variables in specified configuration without creating xml file.

For example,
$ curl -X POST http://localhost:8810/rest/trigger -H "Content-Type: application/json" -d '{"configuration": "1234", "var1": "var1_value"}'

Thanks.

  • replies 2
  • views 1419
  • stars 0
robinshen ADMIN ·

We do not have that plan for now. You may submit an improvement request at track.pmease.com and vote for it.

JerryLee ·