-
Notifications
You must be signed in to change notification settings - Fork 3
GET 배너 리스트 조회 (영훈)
최영훈 edited this page Oct 1, 2020
·
2 revisions
영훈
메소드 | 경로 | 설명 |
---|---|---|
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": "배너 가져오기 실패'"
}