DELETE /builds/:id
Delete a Build
1. Request Header
Name |
Type |
Required |
Description |
Token |
String |
Yes |
Authentication Token |
2. Request Response
Name |
Type |
Required |
Description |
id |
int |
Yes |
Build ID |
project |
int |
Yes |
Affiliated Project |
product |
int |
Yes |
Affiliated Product |
branch |
int |
Yes |
Product branch to which it belongs (The main branch is 0) |
execution |
int |
Yes |
Affiliated Execution |
name |
string |
Yes |
Build Name |
scmPath |
string |
Yes |
Source code URL |
filePath |
string |
Yes |
Download Site |
desc |
string |
Yes |
Build Description |
builder |
string |
Yes |
Builders |
date |
date |
Yes |
Package Date |
3. Response Example
{
"id": 3,
"project": 41,
"product": 4,
"branch": 0,
"execution": 42,
"name": "test",
"scmPath": "",
"filePath": "",
"date": "2021-01-01",
"stories": "",
"bugs": "",
"builder": "admin",
"desc": "",
"deleted": "0",
"executionName": "testt",
"productName": "Multi-branch products",
"productType": "branch",
"files": []
}