[홈 뷰] 최근 주문한 맛집 조회 API - sopt28-ClDiSer-team11/Server GitHub Wiki
Request
메소드 |
경로 |
설명 |
GET |
/main/lastOrder |
최근 주문한 맛집 조회 |
Response Body
// Body
[
{
"title": String,
"star": String,
"reviewCount": String,
"distance": String,
"image": String,
"isFree": Boolean
}
]
Response
성공
{
"status": 200,
"success": true,
"message": "최근 주문한 맛짐 조회 성공.",
"data": [
{
"title": "라라레스토랑",
"star": "4.8",
"reviewCount": "705",
"distance": "0.4km",
"image": "123.jpg",
"isFree": true
},
{
"title": "나폴로피자",
"star": "4.7",
"reviewCount": "203",
"distance": "0.8km",
"image": "456.jpg",
"isFree": false
}
]
}
실패
{
"status": 500,
"success": false,
"message": "서버 내부 에러."
}