Skip to content

[GET] 프로젝트 참여자 목록

Say-young edited this page Jul 16, 2020 · 15 revisions

[GET] 프로젝트 참여자 목록



view가 삭제됨에 따라 사용되지 않는 API입니다.



메소드 경로 설명
GET /project/enter/:project_idx 프로젝트 대기 화면에서 프로젝트 참여자 목록 보여주기


Request Query

key 설명 타입 비고
:project_idx 해당 프로젝트 인덱스 INT NOT NULL


Response


< Success >

{
    "status": 200,
    "success": true,
    "message": "프로젝트 참여자 목록 출력 성공",
    "data": [
        {
            "user_name": "testuser1",
            "user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/89764531234852.png"
        },
        {
            "user_name": "testuser2",
            "user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/49547219246464.png"
        }
    ]
}
  • user_name : 프로젝트 참여자의 이름
  • user_img : 프로젝트 참여자의 프로필 이미지

< Fail >

  1. 데이터 누락
{
  "status": 400,
  "success": false,
  "message": "필요한 값이 없습니다."
}
  1. 서버 에러
{
  "status": 500,
  "success": false,
  "message": "서버 에러"
}