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