Skip to main content
PUT
/
apps
/
{id}
/
builds
/
{build_id}
/
set-current
Set Active Build
curl --request PUT \
  --url https://api.docketqa.com/apps/{id}/builds/{build_id}/set-current \
  --header 'X-API-KEY: <api-key>'
Promote an existing build to be the app’s active build.

Path parameters

id
integer
required
App ID.
build_id
integer
required
The build to promote. Must belong to the app.
No request body.
curl -X PUT https://api.docketqa.com/apps/17/builds/47/set-current \
  -H "X-API-KEY: your-api-key"
Returns { message, app } with app.current_build set to the promoted build. 404 if the app or build is not in your account.