-
Notifications
You must be signed in to change notification settings - Fork 4
카페상세조회
Ji Yeon Kim edited this page Jan 11, 2019
·
9 revisions
선필
메소드 | 경로 | 설명 |
---|---|---|
GET | /cafe/{cafe_id}/detail | 해당 카페 상세 정보 조회 |
- 위도, 경도, 카페 이름, 리뷰 평점, 전화 번호, 영업 안내, 옵션 정보
Content-Type: application/json
Authoirzation: token
해당 카페 상세 정보 조회 성공시
{
"status": 200,
"message": "해당 카페 상세 정보 조회 성공",
"data": {
"cafe_id": 0,
"cafe_name": "카페 레드빅",
"cafe_latitude": 37.55216,
"cafe_longitude": 126.9195,
"cafe_phone": "02 - 566 - 3861",
"cafe_menu_img_url": "",
"address_district_name": "마포구",
"cafe_address_detail": "서교동",
"cafe_rating_avg": 0,
"cafe_times": "11:30 ~ 23:00",
"cafe_days": "매일",
"cafe_option_parking": false,
"cafe_option_wifi": false,
"cafe_option_allnight": false,
"cafe_option_reservation": false,
"cafe_option_smokingarea": false,
"cafe_scrab_is":true
}
}
조회 실패
{
"status" : 404,
"message" : "해당 카페 상세 정보 조회 실패",
"data" : null
}
인증 실패
{
"status" : 401,
"message" : "인증 실패",
"data" : null
}
DB 에러
{
"status" : 600,
"message" : "데이터베이스 에러",
"data" : null
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러",
"data" : null
}