Skip to content
Select themeSelect language

GET /organization/members — list members of the active organization.

GET
/api/organization/members
curl --request GET \
--url https://example.com/api/organization/members
Media typeapplication/json
Array<object>

An organization member enriched with the user’s display name + email (ADR 0035 / #284 — G1), so the members UI shows people, not raw UUIDs. display_name/email are LEFT-joined and therefore optional.

object
display_name
string | null
email
string | null
id
required
string format: uuid
invited_by
string | null format: uuid
joined_at
required
string format: date-time
organization_id
required
string format: uuid
role
required
string
seat_type_id
string | null format: uuid
status
required
string
user_id
required
string format: uuid
Examplegenerated
[
{
"display_name": "example",
"email": "example",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"invited_by": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"joined_at": "2026-04-15T12:00:00Z",
"organization_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"role": "example",
"seat_type_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"status": "example",
"user_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
}
]