# Bulk link attributes to product Creates multiple attribute associations for a product in a single operation. Endpoint: POST /v1/products/{productUuid}/attributes/bulk Version: 1.0.0 Security: Bearer ## Path parameters: - `productUuid` (string, required) Unique identifier of the product. ## Request fields (application/json): - `attributeUuid` (string, required) Identifier of the attribute to link. - `isVariant` (boolean, required) Whether this attribute defines product variants. ## Response 201 fields (application/json): - `uuid` (string, required) Unique identifier for this product-attribute association. - `productUuid` (string, required) Identifier of the product this attribute is linked to. - `attributeUuid` (string, required) Identifier of the linked attribute. - `createdAt` (string, required) Timestamp when this association was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this association was last modified. Example: "2025-11-23T14:15:22.123456Z" - `isVariant` (boolean, required) Whether this attribute is used to define product variants. ## 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)