REST API
Get familiar with the Applivery API and explore the features
Remove a Build
This request is intended to permanently remove a Build
Definition:
DELETE https://api.applivery.io/v1/integrations/builds/{buildId}
- Authentication: required
- Headers:
- Content-Type: application/json
- Authorization: bearer <Your_App_Token>
Param | Type | Description |
---|---|---|
buildId |
String |
Build Id. E.g.: 552ae3cfcb5abfc58d733b81 |
CURL Request Example
curl 'https://api.applivery.io/v1/integrations/builds/5ce3035c93a095001b02505c' -X DELETE -H 'Authorization: bearer xyz...xyz'
Responses
{ "status": true, "data": { "deleted": true } }
{ "status": true, "error": { "code": 2001, "message": "Token not valid" } }
{ "status": true, "error": { "code": 4001, "message": "Entity not found" } }