-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 라운드 정보
Say-young edited this page Jul 16, 2020
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | round/info/:project_idx | 설정한 라운드 정보 출력하기 |
key | 설명 | 타입 | 비고 |
---|---|---|---|
:project_idx | 해당 프로젝트 인덱스 | INT | NOT NULL |
< Success >
{
"status": 200,
"success": true,
"message": "라운드 정보 출력 성공",
"data": {
"round_idx": 1,
"round_number": 1,
"round_purpose": "라운드 목표는 필수로 작성해야 합니다.",
"round_time": 10
}
}
- round_idx : 라운드 인덱스
- round_number : 현재 몇 라운드인지
- round_purpose : 라운드 목표
- round_time : 라운드 소요 시간
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 에러"
}