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