# Get family category association Retrieves a single category association for a family. Endpoint: GET /v1/families/{familyUuid}/categories/{familyCategoryUuid} Version: 1.0.0 Security: Bearer ## Path parameters: - `familyUuid` (string, required) Unique identifier of the family. - `familyCategoryUuid` (string, required) Unique identifier of the category association. ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this family-category association. - `familyUuid` (string, required) Identifier of the family this category is associated with. - `categoryUuid` (string, required) Identifier of the category associated with this family. - `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" - `requirementLevel` (string, required) Defines the requirement level for this category on products in this family. Enum: "may", "must", "mustNot", "should" - `isAutoPopulated` (boolean, required) Whether products created in this family automatically receive this category assignment. - `categoryName` (string, required) Display name of the associated category for convenience. ## 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 404 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)