Skip to main content
Version: v1.0.0(int)

E016: List organization members

GET /api/organizations/current/members

Returns the members of the active organization — each membership joined with the user's identity (email, display name) and role. Triggered from Settings, Members.

Authentication

Standard tenant route. Requires Authorization: Bearer <firebase-id-token> and X-Org-Id: <org-id>. Access: Member.

Request

No query params. Returns every member of the active org, ordered by join date.

Response — 200 OK

{
"data": [
{
"userId": "uuid",
"email": "...",
"displayName": "...",
"role": "owner",
"isActive": true,
"joinedAt": "...",
"lastActiveAt": null
}
]
}

Errors

Standard envelope only.

Workflow

Calls W016 List organization members.