Fetch Menu

The Fetch Menu endpoint allows providers to update menu information, including changes to items, prices, and categories, for a specified store in the Khumbu platform. This endpoint ensures that the provider's menu stays synchronized across all integrated systems.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Headers

NameValue
AuthorizationBearer <access_token>
Content-Typeapplication/json
x-api-keyYour unique API key for authentication

Request Body

Please refer to the Fetch Menu HTTP request parameters guide for a detailed explanation of each parameter and its required format.

Sample CURL Request

curl --location 'https://uat.platform.api.com/uat/v1/providers/standardprovider/partners/simphony/markets/plkpl/stores/menus/update' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <apikey>' \
--header 'Authorization: Bearer <accesstoken>' \
--data '{
    "providerName": "standardprovider",
    "partnerName": "simphony",
    "marketName": "plkpl",
    "storeInformation": {
        "providerStoreId": "99999"
    },
    "menus": [
        {
            "id": "213"
        }
    ]
}'

Error Responses

In the event of an error, the response will contain an error code and message detailing the cause of the failure. Please refer to the Error Reference Guide for comprehensive information on all error codes.

📘

Implementation Guide

This guide helps developers implement the Fetch Menu functionality in their applications. Ensure placeholder values are replaced with actual parameters as needed.

Path Params
string
required
string
required
string
required
Body Params
string
required
string
required
string
required
storeInformation
object
menus
array of objects
menus
Headers
string
required

Your unique API key for authentication

Responses

Language
Credentials
OAuth2
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json