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