Food Buffets by Restaurant
Example API Request:
URL: https://www.api.123demo.co.in/api/restaurantFoodBuffets
Method: POST
Request Parameters:
| Object |
Description |
device_token |
[Required] (Get during app installation) |
app_api_key |
[Required] (Get during app installation) |
token |
[Required] Bearer Token (Get during app login) |
restaurant_id |
[Required] |
output |
JSON formats. |
Response Body: Suceess
{
"success": true,
"data": {
"data": [
{
"id": 1,
"business_id": 1,
"restaurant_id": 40,
"cuisine_type_id": 50,
"food_buffet_header": "Morning Buffet",
"price": 600,
"description": null,
"status": 1,
"created_at": "2022-02-11 18:17:21",
"updated_at": null
}
]
},
"message": "Get fetched restaurant food buffets."
}
Response Body: Failure
{
"success": false,
"message": "Unauthorized",
"data": "Unauthorized"
}