🟢 GET - Team Members
Overview
Architecture for the Get Team Members endpoint
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Architecture for the Get Team Members endpoint
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | int | 100 | Max members to return |
offset | int | 0 | Pagination offset |
include_pending | bool | true | Include pending invitations |
force_refresh | bool | false | Bypass cache |
{
"organization_id": "org_abc123",
"members": [
{
"membership_id": "mem_...",
"user_id": "user_...",
"first_name": "John",
"last_name": "Doe",
"email": "john@acme.com",
"image_url": "https://...",
"role": "org:admin",
"created_at": 1702234567
}
],
"pending_invitations": [...],
"total_members": 5,
"from_cache": false
}
src/app/apis/settings_team/members/routes.py