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.

Purge Application Endpoint

view on GitHub

The Purge Application is an endpoint in BuildMaster's Application Management API that will purge an application.

Request Specification

To purge an existing application, simply POST to the URL with an appropriate API Key and querystring parameter application of the name or id to purge.

POST /api/applications/purge?«querystring-parameters»

An empty body is acceptable, but you can post key/value pairs in the body instead of the querystring.

Purging an application requires the name (e.g. myApp) or id (e.g. 2):

POST /api/applications/purge?application=myApp
POST /api/applications/purge?application=3

Purging an application with a body requires the name (e.g. myApp) or id (e.g. 2):

POST /api/applications/purge
{
    "name": "myApp"
}

Response Specification

Response Details
200 (Success) the application will be purged. The body will be empty
400 (Invalid Input) indicates application parameter is missing
403 (Unauthorized API Key) indicates a missing, unknown, or unauthorized API Key; the body will be empty
500 (Server Error) indicates an unexpected error; the body will contain the message and stack trace, and this will also be logged