Dozor
Members

List org members

VIEWER+ — every member sees the full roster. Role-change / remove are gated tighter on the `[memberId]` routes.

GET/api/organizations/{orgId}/members

VIEWER+ — every member sees the full roster. Role-change / remove are gated tighter on the [memberId] routes.

Path Parameters

orgId*string

Organisation id (cuid)

Response Body

application/json

curl -X GET "https://loading/api/organizations/string/members"
[
  {
    "id": "mem_aaaa1111",
    "role": "OWNER",
    "joinedAt": "2026-04-12T09:00:00.000Z",
    "user": {
      "id": "usr_owner",
      "name": "Sam Owner",
      "email": "sam@your-company.com",
      "image": "https://api.dicebear.com/9.x/shapes/svg?seed=sam"
    }
  },
  {
    "id": "mem_bbbb2222",
    "role": "ADMIN",
    "joinedAt": "2026-04-15T14:22:00.000Z",
    "user": {
      "id": "usr_admin",
      "name": "Jordan Admin",
      "email": "jordan@your-company.com",
      "image": "https://api.dicebear.com/9.x/shapes/svg?seed=jordan"
    }
  },
  {
    "id": "mem_cccc3333",
    "role": "VIEWER",
    "joinedAt": "2026-04-20T08:45:00.000Z",
    "user": {
      "id": "usr_viewer",
      "name": null,
      "email": "support@your-company.com",
      "image": "https://api.dicebear.com/9.x/shapes/svg?seed=support"
    }
  }
]
Empty
Empty