GET /organization/members — list members of the active organization.
GET
/api/organization/members
const url = 'https://example.com/api/organization/members';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/organization/membersResponses
Section titled “Responses”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" }]