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