# List family attributes Retrieves a paginated list of attribute associations for a family. Endpoint: GET /v1/families/{familyUuid}/attributes Version: 1.0.0 Security: Bearer ## Path parameters: - `familyUuid` (string, required) Unique identifier of the family. ## Query parameters: - `page` (integer) Page number for pagination. Default is 1. - `size` (integer) Page size for pagination. Default is 20. ## Response 200 fields (application/json): - `items` (array, required) - `items.uuid` (string, required) Unique identifier for this family-attribute association. - `items.familyUuid` (string, required) Identifier of the family this attribute is associated with. - `items.attributeUuid` (string, required) Identifier of the attribute associated with this family. - `items.createdAt` (string, required) Timestamp when this association was created. Example: "2025-11-23T14:15:22.123456Z" - `items.updatedAt` (string, required) Timestamp when this association was last modified. Example: "2025-11-23T14:15:22.123456Z" - `items.requirementLevel` (string, required) Defines the requirement level for this attribute on products in this family. Enum: "may", "must", "mustNot", "should" - `items.isAutoPopulated` (boolean, required) Whether products created in this family automatically receive this attribute with a default value. - `items.attributeName` (string, required) Display name of the associated attribute for convenience. - `pagination` (object, required) - `pagination.page` (integer, required) - `pagination.size` (integer, required) - `pagination.totalItems` (integer, required) - `pagination.totalPages` (integer, required) ## 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 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)