action akeneo_get_families_family_code_variants { label: "Get list of family variants" description: "This endpoint allows you to get a list of family variants. Family variants are paginated and sorted by code." provider: akeneo method: GET path: "/api/rest/v1/families/{family_code}/variants" encoding: json input: { type: "object" properties: { family_code: { type: "string" } limit: { type: "string" } page: { type: "string" } with_count: { type: "string" } } required: ["family_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }