# Get all rules for a group Retrieves the complete list of rules for a specific group. Rules are returned in order based on their ordering value (lowest first). This endpoint is publicly accessible as group rules should be visible to potential members before joining. Each rule includes its text content, explanatory hint, and display ordering. Endpoint: GET /api/v1/groups/{groupId}/rules Version: 1.0 Security: ## Path parameters: - `groupId` (string, required) The unique identifier of the group whose rules to retrieve Example: "us_01hxcvk1hjexere4pvtrj0ymqq" ## Response 200 fields (application/json): - `text` (string, required) The rule text that defines expected behavior or policy (max 500 characters) Example: "Be respectful to all members" - `hint` (string, required) Additional context or clarification for the rule (max 500 characters) Example: "This includes no harassment, personal attacks, or discriminatory language" - `ordering` (integer, required) Display order position - rules with lower values appear first Example: 1000 - `id` (string, required) Unique identifier for the rule Example: "us_01hxcvk1hjexere4pvtrj0ymqq"