GET
/
organizations
/
{organizationId}
/
users
List organization users
curl --request GET \
  --url https://api.tally.so/organizations/{organizationId}/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "fullName": "<string>",
    "email": "<string>",
    "avatarUrl": "<string>",
    "organizationId": "<string>",
    "isDeleted": true,
    "hasTwoFactorEnabled": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "subscriptionPlan": "FREE"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

A list of organization users

id
string
firstName
string
lastName
string
fullName
string
email
string
avatarUrl
string | null
organizationId
string
isDeleted
boolean
hasTwoFactorEnabled
boolean
createdAt
string
updatedAt
string
subscriptionPlan
enum<string>
Available options:
FREE,
PRO,
BUSINESS