SourceDeploy 이력 목록을 조회합니다.
요청
API URL
GET {SOURCEDEPLOY_API_URL}/project/{projectId}/history
요청 Parameter
요청 Query
항목 |
필수여부 |
타입 |
설명 |
비고 |
pageSize |
N |
string |
페이지 Size |
최대 100, default 100 |
pageNo |
N |
string |
페이지 NO |
1부터 시작 |
요청 Body
없음
응답
응답 Body
{
"historyList": [
{
"project" : {
"id": "number",
"name": "string"
},
"stage": {
"id": "number",
"name": "string"
},
"scenario": {
"id": "number",
"name": "string"
},
"id": "string",
"startTime": "number",
"status": "string",
}
]
}
항목 |
타입 |
설명 |
비고 |
historyList.project.id |
number |
history > project id |
|
historyList.project.name |
string |
history > project 이름 |
|
historyList.stage.id |
number |
history > stage id |
|
historyList.stage.name |
string |
history > stage 이름 |
|
historyList.scenario.id |
number |
history > 시나리오 id |
|
historyList.scenario.name |
string |
history > 시나리오 이름 |
|
id |
string |
history id |
|
startTime |
number |
배포 시작 시각 |
|
status |
string |
배포 상태 |
|