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
| Method | Path | Notes |
|---|---|---|
GET | /api/v1/members | List 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://...."
}
}| Field | Notes |
|---|---|
role | owner · admin · member. |
user.username | Nullable. Used by the @mention picker. |
user.image | Nullable URL. |
Listing members
GET /api/v1/members?limit=50&offset=0| Param | Type | Default | Range |
|---|---|---|---|
limit | int | 50 | 1–100 |
offset | int | 0 | ≥ 0 |
Returns { data, total }.