Skip to content

List users

GET /v1/users

Returns every user that is a member of the team the API key is bound to, ordered by name. Use this to discover valid assigneeIds values for Create a task.

This endpoint takes no query parameters or body.

200 OK — array of user objects:

FieldTypeDescription
idstringUser ID (UUID). Pass this as assigneeIds[] items.
namestringUser’s display name.
emailstringUser’s email address.
imagestring | nullURL of the user’s avatar image, or null.
rolestringTeam role: owner, admin, or member.
[
  {
    "id": "u_abc123",
    "name": "Tom",
    "email": "tom@example.com",
    "image": "https://orsane.app/avatars/u_abc123.png",
    "role": "owner"
  },
  {
    "id": "u_def456",
    "name": "Sara",
    "email": "sara@example.com",
    "image": null,
    "role": "member"
  }
]