1. Menu
Fodimi
  • Clients
    • Get list
      GET
    • Create client
      GET
    • Get client orders list
      GET
    • Get client history
      GET
    • Update client details
      PUT
    • Create client
      GET
    • Create client
      POST
  • Orders
    • Get Order Details
      GET
    • Get orders list
      GET
    • Change order status
      PUT
    • Create an order
      POST
    • Quote an order
      POST
  • Menu
    • Get menu
      GET
    • Update Product visibility
      PUT
    • Bulk update menu translations
      PATCH
    • Update product translations
      PATCH
    • Update category translations
      PATCH
    • Update addon group translations
      PATCH
    • Update addon translations
      PATCH
    • Update variant group translations
      PATCH
    • Update variant translations
      PATCH
  • Webhooks
    • Order status changed
    • Order closed
    • Order canceled
    • Client created
    • Client details changed
    • Client points changed
    • Delivery status changed
  • Webhooks (sent by Fodimi)
    • Order status changed
    • Order closed
    • Order canceled
    • Client created
    • Client details changed
    • Client points changed
    • Delivery status changed
  • Account
    • Who am I
  • Schemas
    • Clients
      • Client list response
      • Client details response
      • Client history logs
    • Orders
      • Order list response
      • Order response
      • Order detailed response
      • Order product response
    • Menu translations section result
    • Menu translations not found
    • Validation error
  1. Menu

Update variant group translations

Developing
PATCH
/menu/{restaurantUid}/variant-groups/{variantGroupId}
Updates translations of a single variant group. For many items use PATCH /menu/{restaurantUid}/translations.
id of a variant group from GET /menu/{restaurantUid} ([].products[].variant_group.id).
Translations are merged per language: only the languages you send are changed, all other languages stay as they are.
Send null (or an empty string) to clear a language. POLISH in translatable_name cannot be cleared - it is the base name used on receipts, POS and delivery platforms.
Allowed language keys: POLISH, ENGLISH, GERMAN, ITALIAN, FRENCH, UKRAINIAN, SPANISH, RUSSIAN. Any other key is rejected with 422.
Only these fields are accepted: translatable_name. At least one is required.
Required ability: menu:write
A key limited to selected locations gets 403 for any other location.

Request

Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
The variant group with all its translations after the update.
Bodyapplication/json

🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
🟠429
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://fodimi.pl/api_public/menu/b06a191d-8e22-4707-8c1e-9b5119cf4461/variant-groups/' \
--header 'Content-Type: application/json' \
--data '{
    "translatable_name": {
        "ENGLISH": "Size"
    }
}'
Response Response Example
200 - Example 1
{
    "id": 0,
    "translatable_name": {
        "POLISH": "string",
        "ENGLISH": "string",
        "GERMAN": "string",
        "ITALIAN": "string",
        "FRENCH": "string",
        "UKRAINIAN": "string",
        "SPANISH": "string",
        "RUSSIAN": "string"
    }
}
Modified at 2026-09-12 08:45:17
Previous
Update addon translations
Next
Update variant translations
Built with