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