Update a published product directly
Partially updates a published product in-place — no draft required. If a pending draft exists for this product it is discarded first so the two states stay consistent. Only specified fields are modified. Requires a management API key (`mk_`).
Authorization
ManagementApiKey Management API key — starts with mk_. Generate one from your dashboard.
In: header
Path Parameters
Restaurant ID
uuidProduct ID
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X PATCH "https://example.com/api/v1/management/restaurants/497f6eca-6276-4993-bfeb-53cbbbba6f08/products/497f6eca-6276-4993-bfeb-53cbbbba6f08" \ -H "Content-Type: application/json" \ -d '{}'{ "success": true, "data": { "product": { "productId": "dcd53ddb-8104-4e48-8cc0-5df1088c6113", "organizationId": "7bc05553-4b68-44e8-b7bc-37be63c6d9e9", "restaurantId": "4607f331-b75a-4fe3-8172-582c6c390256", "parentProductId": "1ffe8af3-a0f6-480d-b0be-350ab24a5fb9", "nameKey": "string", "descriptionKey": "string", "price": 0, "scanId": "83d71394-faa2-4b6c-b13b-6d3118de459e", "imageUrl": "http://example.com", "available": true, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }, "isDraft": false }}Get a published product
Returns a published product by its ID. Only returns products that have been published (not drafts). Requires a management API key (`mk_`).
Delete a product
Deletes a published product from a restaurant. Handles cascade deletion of related resources (QR codes, menu popups, pending drafts). The product must belong to the specified restaurant. Requires a management API key (`mk_`).