BizKitHub
DocsAPI ReferenceProduct/bff/product/product-auto-translate
postProductAdmin BFF

/bff/product/product-auto-translate

Automatically translates the product name, short description, and long description from the organisation default locale to all other configured organisation locales using AI. Existing translations are overwritten. After translation, the product read model is regenerated.

ProductpostBffProductProduct-auto-translate

Parameters

JSON body

Request body

application/json
productCodestringRequired

Product code to auto-translate.

Examplemy-product

Response schema

1 status code documented

200Success
translatedLocalesstring[]Required

List of locale codes that were translated.

Locale code that was translated (e.g. "en", "de").

Response example

application/json
{
  "translatedLocales": [
    "string"
  ]
}

Request example

POST /bff/product/product-auto-translate

post
curl -X POST "https://api.bizkithub.com/bff/product/product-auto-translate" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "productCode": "my-product"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key