매장 정보 조회 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki

매장 정보 조회

메소드 경로 설명
GET /owner/{ownerIndex} 매장 정보 조회

요청 헤더

{
    "Content-Type": "application/json"
}

응답 성공

{
    "status": 200,
    "message": "메장 정보 조회 성공",
    "data": {
        "cafeName": "남산학사 cafe",
        "cafeLocation": "남산학사 1층"
    }
}

응답 실패

{
    "status": 400,
    "message": "userIndex에 해당하는 값이 유효하지 않습니다. userIndex 값을 확인해주세요."
}
{
    "status": 500,
    "message": "INTERNAL_SERVER_ERROR"
}