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