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