action akeneo_get_families_family_code_variants_code { label: "Get a family variant" description: "This endpoint allows you to get the information about a given family variant." provider: akeneo method: GET path: "/api/rest/v1/families/{family_code}/variants/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } family_code: { type: "string" } } required: ["code", "family_code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }