# Bulk create product content Creates localized content for multiple locales in a single operation. Endpoint: POST /v1/products/{productUuid}/contents/bulk Version: 1.0.0 Security: Bearer ## Path parameters: - `productUuid` (string, required) Unique identifier of the product. ## Request fields (application/json): - `localeUuid` (string, required) Identifier of the locale for this content. - `label` (string, required) Localized display label for the product. - `description` (string,null) Localized detailed description for the product. - `shortDescription` (string,null) Localized short description for the product. ## Response 201 fields (application/json): - `uuid` (string, required) Unique identifier for this content entry. - `productUuid` (string, required) Identifier of the product this content belongs to. - `localeUuid` (string, required) Identifier of the locale for this content. - `createdAt` (string, required) Timestamp when this content was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this content was last modified. Example: "2025-11-23T14:15:22.123456Z" - `label` (string, required) Localized display label for the product. - `description` (string,null) Localized detailed description for the product. - `shortDescription` (string,null) Localized short description for the product. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 409 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 422 fields (application/problem+json): - `errors` (array) - `errors.code` (string, required) - `errors.message` (string, required) - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)