GET
/
organization
/
{organizationId}
/
users
curl --request GET \
  --url 'https://app.teable.cn/api/organization/%7BorganizationId%7D/users?skip=SOME_NUMBER_VALUE&limit=SOME_NUMBER_VALUE&search=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "users": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "avatar": "<string>",
      "createdTime": "<string>",
      "isAdmin": true,
      "isExternal": true,
      "deactivatedTime": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Query Parameters

skip
number | null
limit
number | null

Response

200 - application/json
Get organization users
users
object[]
required
total
number
required