-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 라운드 카드 리스트
Say-young edited this page Jul 14, 2020
·
15 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | round/cardList/:project_idx/:round_idx | 라운드 카드 리스트 정보들을 가져온다. |
{
"Content-Type": "application/json"
}
key | 설명 | 타입 | 비고 |
---|---|---|---|
:project_idx | 프로젝트 인덱스 | INT | NOT NULL |
:round_idx | 라운드 인덱스 | INT | NOT NULL |
{
"status": 200,
"success": true,
"message": "라운드 카드 정보 출력 성공",
"data": {
"project_name": "프로젝트 명",
"round_number": 3,
"round_purpose": "라운드 목표",
"round_time": 10,
"card_list": [
{
"card_idx": 1,
"card_img": "http://~",
"card_txt": null
},
{
"card_idx": 2,
"card_img": "http://~",
"card_txt": null
},
{
"card_idx": 3,
"card_img": null,
"card_txt": "텍스트가 있으면"
},
{
"card_idx": 4,
"card_img": null,
"card_txt": "이미지가 없지!"
}
]
}
}
- project_name: 프로젝트 명
- round_number: 해당 라운드
- round_purpose: 라운드 목표
- round_time: 라운드 소요 시간
- card_list: 라운드 카드 리스트
- card_idx: 카드 인덱스
- card_img: 카드 이미지
- card_txt: 카드 텍스트
- 통신 실패
{
"status": 400,
"success": false,
"message": "라운드 카드 정보 출력 실패"
}