GET /projects/:id/releases
Get the release list of product
Request header
Name |
Type |
Mandatory fields |
Description |
Token |
String |
Yes |
Authentication credentials Token |
Request response
Name |
Type |
Mandatory fields |
Description |
total |
int |
Yes |
total number of release |
releases |
array |
Yes |
release list |
∟ id |
int |
No |
release code |
∟ project |
int |
No |
affiliated project |
∟ product |
int |
No |
affiliated product |
∟ branch |
int |
No |
affiliated branch |
∟ build |
int |
No |
affiliated build |
∟ name |
string |
No |
release title |
∟ date |
date |
No |
release time |
∟ desc |
string |
No |
description |
∟ status |
string |
No |
status(normal | terminate) |
Response example
{
"total": 1,
"releases": [
{
"id": 1,
"project": 41,
"product": 4,
"branch": 0,
"build": 3,
"name": "release test",
"marker": "0",
"date": "2021-12-02",
"stories": "",
"bugs": "",
"leftBugs": "",
"desc": "",
"mailto": "",
"notify": null,
"status": "normal",
"subStatus": "",
"deleted": false,
"productName": "multiple branch product",
"buildID": 3,
"buildName": "test",
"projectName": "test"
}
]
}