# Link term to product attribute Creates a new association between a product attribute and an attribute term. Endpoint: POST /v1/products/{productUuid}/attributes/{productAttributeUuid}/terms Version: 1.0.0 Security: Bearer ## Path parameters: - `productUuid` (string, required) Unique identifier of the product. - `productAttributeUuid` (string, required) Unique identifier of the product attribute. ## Request fields (application/json): - `attributeTermUuid` (string, required) Identifier of the attribute term to link. ## Response 201 fields (application/json): - `uuid` (string, required) Unique identifier for this product-term association. - `productUuid` (string, required) Identifier of the product this term is linked to. - `productAttributeUuid` (string, required) Identifier of the product attribute. - `attributeTermUuid` (string, required) Identifier of the linked attribute term. - `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" ## 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)