> ## Documentation Index
> Fetch the complete documentation index at: https://docs-sms.mifumolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Team Members

Get list of team members for a tenant.

<ParamField path="tenant_id" type="string" required>
  Tenant ID
</ParamField>

## Success Response (200)

<ResponseExample>
  ```json theme={null}
  {
    "count": 5,
    "results": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "user": {
          "id": 1,
          "email": "member@example.com",
          "first_name": "Jane",
          "last_name": "Doe"
        },
        "role": "member",
        "status": "active",
        "joined_at": "2025-11-01T10:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>
