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