Skip to content

매장 상세 정보 조회

Bomi Kim edited this page Jan 7, 2019 · 12 revisions

매장 상세 정보 조회

메소드 경로 짧은 설명
GET /stores/{storeIdx} 매장 상세 정보 조회

요청 헤더

Content-Type: application/json

요청 파라미터

storeIdx: 조회할 매장 고유 idx(int)

응답 바디

매장 상세 정보 조회 성공

{
    "status": 200,
    "message": "매장 상세 정보 조회 성공",
    "data": {
        "time": "앱잼당일만",
        "breakDays": "앱잼날만 영업합니다 ^^",
        "number": "010-8464-2815"
    }
}

매장 상세 정보 조회 실패

{
    "status": 404,
    "message": "매장 상세 정보를 찾을 수 없습니다.",
    "data": null
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "message": "서버 내부 에러",
    "data": null
}

Clone this wiki locally