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.
Headers
| Name | Value |
|---|---|
| Authorization | Bearer <access_token> |
| Content-Type | application/json |
| x-api-key | Your 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 GuideThis guide helps developers implement the Fetch Menu functionality in their applications. Ensure placeholder values are replaced with actual parameters as needed.