action akeneo_get_categories { label: "Get list of categories" description: "This endpoint allows you to get a list of categories. Categories are paginated and sorted by `root/left`." provider: akeneo method: GET path: "/api/rest/v1/categories" encoding: json input: { type: "object" properties: { limit: { type: "string" } page: { type: "string" } search: { type: "string" } with_count: { type: "string" } with_enriched_attributes: { type: "string" } with_position: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }