Note
You are viewing the Apps API whose scope is limited to Apps. If you are looking for the full API spec, check the Organizations API .
This request is intended to remove a Build permanently.
Definition #
- Method: DELETE
- URL:
https://api.applivery.io/v1/integrations/builds/{buildId}
- Authentication, build ID: required
- Headers:
Content-Type: application/json
Authorization: bearer <your_app_token>
Params #
Param | Type | Description |
---|---|---|
buildId
|
String |
Build Id. E.g.: 552ae3cfcb5abfc58d733b81
|
Example request #
curl 'https://api.applivery.io/v1/integrations/builds/552ae3cfcb5abfc58d733b81'
-X DELETE
-H 'Authorization: bearer xyz...xyz'
Responses #
200 - Success
400 - Bad request
401 - Unauthorized
404 - Not found
Content type:
application/json
{
"status": true,
"data": {
"deleted": true
}
}
Content type:
application/json
{
"status": false,
"error": {
"code": 5014,
"message": "Build Not Processed"
}
}
Content type:
application/json
{
"status": false,
"error": {
"code": 3002,
"message": "Token Expired"
}
}
Content type:
application/json
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}