Update a product
PATCH/v1/menu/products/:id
Partially updates a product by id. Provide at least one of name, description, visible, stock_enabled, or messages_for_customers — an empty body is rejected. The response does not include variants; call GET /v1/menu/products/{id} for the full variant list.
Required scope: menu:write
Request
Responses
- 200
- 401
- 403
- 404
- 422
The updated product.
Unauthenticated — the request is missing a credential, or the Bearer token / API key is invalid, expired, or revoked.
Insufficient scope — the credential is authenticated but lacks a scope the endpoint requires.
Not found — no resource matches the id in the path (or it belongs to a different company).
Validation failed — the request body failed schema validation. errors[] lists every offending field.