-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 라운드 참여자 목록
Say-young edited this page Jul 16, 2020
·
11 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | round/memberList/:round_idx | 라운드 참여 목록 받아오기 |
key | 설명 | 타입 | 비고 |
---|---|---|---|
:round_idx | 해당 라운드 인덱스 | INT | NOT NULL |
< Success >
{
"status": 200,
"success": true,
"message": "라운드 참여자 목록 출력 성공",
"data": [
{
"user_name": "test1",
"user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/456998741365.png"
},
{
"user_name": "test2",
"user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/6986324741554.png"
}
]
}
- user_name: 라운드 참여자의 이름
- user_img: 라운드 참여자의 프로필 이미지
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "서버 에러"
}