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