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