즐겨찾는 매장 조회 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki
즐겨찾는 매장 조회
메소드 |
경로 |
설명 |
GET |
/users/favorite |
즐겨찾는 매장 조회 |
요청 헤더
{
"Content-Type": "application/json",
"userIndex": 1
}
응답 성공
{
"status": 200,
"message": "즐겨찾는 매장 조회 성공",
"data": [
{
"cafeIndex": 1,
"cafeName": "남산학사 cafe",
"cafeLocation": "신공학관 1층",
"cafeImage": "남산학사_cafe 이미지 링크"
},
{
"cafeIndex": 2,
"cafeName": "가온누리 cafe",
"cafeLocation": "중앙도서관 입구 옆",
"cafeImage": "가온누리_cafe 이미지 링크"
},
]
}
}
응답 실패
{
"status": 500,
"message": "INTERNAL_SERVER_ERROR"
}