Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Reject Build

view on GitHub

The Reject Build is an endpoint in BuildMaster's Release & Build Deployment API that will reject a build, with the parameters defined in the body of the request.

Request Specification

POST/DELETE /api/releases/builds/reject

To reject a build, simply POST or DELETE to the URL with an appropriate API Key and a request body, containing the following parameters:

Input Parameter Specification
Build Required. Either a key named buildId with an integer value, or a key named buildNumber with any value.
Release Required if buildNumber is specified, otherwise must not be set. Either a key named releaseId with an integer value, or a key named releaseNumber with any value.
Application Required if releaseNumber is specified, otherwise must not be set. Either a key named applicationId with an integer value or a key named applicationName with any value.

Rejecting a build requires parameters defined in the request body.

DELETE /api/releases/builds/reject

{
  "buildNumber": "2",
  "releaseNumber": "1.0.1",
  "applicationName": "TaxCalculator"
}

Response Specification

Response Details
200 (Success) the specified build was rejected
400 (Invalid Input) indicates invalid or missing properties in the request; the body will provide some details as text
403 (Unauthorized API Key) indicates a missing, unknown, or unauthorized API Key; the body will be empty