# Get group's forum categories (admin) RBAC: - requires ANY of Users.Read, Users.Manage Endpoint: GET /api/v1/admin/groups/{groupId}/categories Version: 1.0 Security: ## Path parameters: - `groupId` (string, required) Group ID Example: "us_01hxcvk1hjexere4pvtrj0ymqq" ## Query parameters: - `lastId` (string,null) Get older records (records with IDs less than this value) Alias maxId/max_id Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `limit` (integer,null) - `offset` (integer,null) - `sortBy` (string,null) - `sortOrder` (string,null) - `untilId` (string,null) Get newer records (records with IDs greater than this value) Alias minId/min_id Example: "us_01hxcvk1hjexere4pvtrj0ymqq" ## Response 200 fields (application/json): - `id` (string, required) UUID with type prefix Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `forumId` (string, required) UUID with type prefix Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `name` (string, required) - `displayName` (string, required) - `description` (string, required) - `meta` (object, required) Category additional data - `meta.color` (string, required) Category color in HEX format Example: "#FF5733" - `tagsAllowed` (array, required) ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 404 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation