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