Get all active group activity assessment options.
---
responses:
"200":
content:
application/json:
schema:
type: array
items:
type: object
properties:
text:
type: string
description: The text content of the option
is_active:
type: boolean
description: Whether this option is
currently available
order:
type: integer
description: Display order for the frontend
---

GET /api/clubs/group_activity_options/?format=api&ordering=-favorite_count
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

[
    {
        "id": 1,
        "text": "Physical activities (e.g., sports, fitness events)",
        "is_active": true,
        "order": 1
    },
    {
        "id": 2,
        "text": "Medical/health-related services (e.g., blood drives, doula support)",
        "is_active": true,
        "order": 2
    },
    {
        "id": 3,
        "text": "Working with minors or vulnerable populations",
        "is_active": true,
        "order": 3
    },
    {
        "id": 4,
        "text": "Off-campus travel (local or distant)",
        "is_active": true,
        "order": 4
    },
    {
        "id": 5,
        "text": "Handling of food or beverages",
        "is_active": true,
        "order": 5
    },
    {
        "id": 6,
        "text": "Use of specialized equipment or technology",
        "is_active": true,
        "order": 6
    },
    {
        "id": 7,
        "text": "Host large-scale events or activities with 500 or more attendees",
        "is_active": true,
        "order": 7
    },
    {
        "id": 8,
        "text": "None of the above",
        "is_active": true,
        "order": 8
    }
]