Skip to content

GET 배너 리스트 조회 (영훈)

최영훈 edited this page Oct 1, 2020 · 2 revisions

[GET] 배너 리스트 보기 (SP3, 영훈)

영훈

figma참조

메소드 경로 설명
GET /places/group/:groupIdx/banner 배너 리스트 조회

요청 예시

{baseURL}/places/group/17/banner

요청 헤더

Content-Type: application/json
token: token

응답 바디

key 설명 타입 비고
bannerIdx 배너 인덱스 INT
bannerTitle 배너 제목 String
bannerBadgeName 배너 뱃지 이름 String
bannerBadgeColor 배너 뱃지 색 String
bannerDescription 배너 설명 String
bannerCreatedAt 배너 생성일 int
bannerImageUrl 배너 이미지 String

성공

{
    "status": 200,
    "success": true,
    "message": "배너 리스트 조회 성공.",
    "data": [
        {
            "bannerIdx": 2,
            "bannerTitle": "테스트",
            "bannerBadgeName": "테스트배지",
            "bannerBadgeColor": "#5BC9A1",
            "bannerDescription": "ㄹㅇ테스트용이다",
            "bannerCreatedAt": 15912351,
            "bannerImageUrl": "https://sopt26.s3.ap-northeast-2.amazonaws.com/images/origin/banner_cafe.png",
            "groupIdx": 17
        }
    ]
}

실패

  • 그룹의 종속되지 않은 배너인덱스 호출시
{
    "status": 400,
    "success": true,
    "message": "배너 접근 권한 없음. 그룹 불일치!"
}
  • 서버 내부 에러
{
    "status": 500,
    "message": "배너 가져오기 실패'"
}
Clone this wiki locally