GET
/projects/:id/executions
Get the execution list of project
1. Request Header
| Name |
Type |
Required |
Description |
| Token |
String |
Yes |
Authentication Token |
2. Request Response
| Name |
Type |
Required |
Description |
| page |
int |
Yes |
Page No. |
| total |
int |
Yes |
Total Executions |
| limit |
int |
Yes |
Executions per Page |
| executions |
array |
Yes |
Execution List |
| ∟ id |
int |
Yes |
Execution ID |
| ∟ name |
string |
Yes |
Execution Name |
| ∟ code |
string |
Yes |
Execution Code |
| ∟ begin |
date |
Yes |
Planning Begin Date |
| ∟ end |
date |
Yes |
Planning End Date |
| ∟ status |
string |
Yes |
Execution Status() |
| ∟ openedBy |
|
Yes |
Created by |
| ∟ openedDate |
datetime |
Yes |
Creation Time |
| ∟ progress |
int |
Yes |
Current Progress |
3. Response Example
{
"page": 1,
"total": 1,
"limit": 20,
"executions": [
{
"id": 13,
"name": "iteration 1",
"project": 12,
"code": "sprint1",
"type": "sprint",
"parent": 12,
"begin": "2021-11-26",
"end": "2021-12-02",
"status": "wait",
"openedBy": "admin",
"openedDate": "2021-11-26T02:42:22Z",
"progress": 0
}
]
}