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