View Source

QuickBuild can be paused to prevent builds from running via RESTful call.
h1. Syntax
QuickBuild can be paused by issuing GET request to below url:
{code}http://localhost:8810/rest/pause{code}
The response is of mime type _text/plain_ and the content is simply _paused_ if successful.

h1. Security
You will need to use http BASIC authentication to login as administrator to pause the system.

h1. Demo
We use [curl|http://curl.haxx.se/] to demonstrate how to paused the system:
{code}curl -u admin:admin http://localhost:8810/rest/pause{code}