REST API

Members

Read-only listing of organization members.

The members endpoint exposes the people in the organization — their role and minimal user profile — so external tools can resolve assignees and authors.

Membership mutations (invite, role change, remove) are dashboard-only in v1.

Endpoints

MethodPathNotes
GET/api/v1/membersList members alphabetically by user name. Offset pagination.

Member shape

{
  "id": "m1…",
  "role": "owner",
  "createdAt": "...",
  "updatedAt": "...",
  "user": {
    "id": "u1…",
    "name": "Alex Rivera",
    "email": "alex@example.com",
    "username": "alex",
    "image": "https://...."
  }
}
FieldNotes
roleowner · admin · member.
user.usernameNullable. Used by the @mention picker.
user.imageNullable URL.

Listing members

GET /api/v1/members?limit=50&offset=0
ParamTypeDefaultRange
limitint501–100
offsetint0≥ 0

Returns { data, total }.

On this page