Restaurant Catalog
Query Parameters
Name
Type
Description
{
"status": "SUCCESS",
"status_msg": "Request Submitted Successfully",
"error": null,
}Sample API Call
curl --location --request POST 'https://services.onlinesales.ai/merchandiseFeedService/foodcommerce/restaurants' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": <CLIENT ID>,
"token": "<YOUR TOKEN HERE>",
"restaurants": [
{
"restaurant_id": "12345",
"name": "Domino's Pizza, Balewadi",
"latitude": 11.11,
"longitude": 11.11,
"address": "Shop 5-10",
"city": "Pune",
"locality": "Balewadi High Street",
"area": "Balewadi",
"state": "Maharastra",
"country": "India",
"zip_code": "12345",
"restaurant_link": "https://test-food-commerce.com/dominos-balewadi-pune",
"opening_hours": [
{
"day_of_week": "MONDAY",
"end_hour": 20,
"end_minute": "ZERO",
"start_hour": 9,
"start_minute": "THIRTY"
},
{
"day_of_week": "TUESDAY",
"end_hour": 20,
"end_minute": "ZERO",
"start_hour": 9,
"start_minute": "THIRTY"
}
],
"diet_categories": ["veg", "vegan"],
"cuisines": [
"Pizza"
],
"logo_url": "https://test-food-commerce.com/dominos-balewadi-pune/logo.png",
"average_rating": "4",
"parent_restaurant_id": 123,
"parent_restaurant_name": "Domino's Pizza",
"total_ratings": 100,
"serving_area_ids": ["123","234"],
"offer_text": [
"50% off on your first order"
],
"rt_restaurant_status": "open",
"custom_label_0" : "",
"custom_label_1" : "",
"custom_label_2" : "",
"custom_label_3" : "",
"custom_label_4" : "",
"rt_custom_label_0" : "",
"rt_custom_label_1" : "",
"rt_custom_label_2" : "",
"rt_custom_label_3" : "",
"rt_custom_label_4" : ""
}
]
}'Restaurant Object
Parameter
Data Type
Comment
Required?
Last updated