Skip to content

[GET] 라운드 카드 리스트

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

[GET] 라운드 카드 리스트



라운드카드리스트



메소드 경로 설명
GET round/cardList/:project_idx/:round_idx 라운드 카드 리스트 정보들을 가져온다.


Request Query

key 설명 타입 비고
:project_idx 프로젝트 인덱스 INT NOT NULL
:round_idx 라운드 인덱스 INT NOT NULL


Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "라운드 카드 정보 출력 성공",
    "data": {
        "project_name": "테스트 프로젝트",
        "round_number": 1,
        "round_purpose": "api 수정",
        "round_time": 10,
        "card_list": [
            {
                "card_idx": 37,
                "card_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/4513468453648.png",
                "card_txt": null,
                "user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/653125648532564.png"
            },
            {
                "card_idx": 38,
                "card_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/123456789123456.png",
                "card_txt": null,
                "user_img": "https://sopt-26-server.s3.ap-northeast-2.amazonaws.com/images/312456876536465.png"
            }
        ]
    }
}
  • project_name: 프로젝트 이름
  • round_number: 해당 라운드가 몇 라운드인지
  • round_purpose: 라운드 목표
  • round_time: 라운드 소요 시간
  • card_list: 라운드 카드 리스트
  • card_idx: 카드 인덱스
  • card_img: 카드 이미지
  • card_txt: 카드 텍스트
  • user_img: 카드를 생성한 유저의 이미지


< Fail >

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