- Phản hồi:
{ "status": 200, "message": "...", "data": [...] }
- Endpoint:
POST /api/like
- Body:
{ "userId": 1, "resId": 2 }
- Endpoint:
POST /api/like/unlike
- Body:
{ "userId": 1, "resId": 2 }
- Endpoint:
GET /api/like/restaurant/:id
- Endpoint:
GET /api/like/user/:id
- Endpoint:
POST /api/review/create
- Body:
{ "userId": 1, "resId": 2, "amount": 5 }
- Endpoint:
GET /api/review/restaurant/:id
- Endpoint:
GET /api/review/user/:id
- Endpoint:
POST /api/order/create
- Body:
{ "userId": 1, "foodId": 3, "amount": 2, "code": "ORDER123", "arrSubId": "1,2" }