GET
/
admin
/
user
shell
curl --request GET \
  --url 'https://app.teable.ai/api/admin/user?includeDeleted=SOME_BOOLEAN_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "avatar": "<string>",
    "createdTime": "<string>",
    "deletedTime": "<string>",
    "lastSignTime": "<string>",
    "deactivatedTime": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

includeDeleted
boolean | null

Response

200 - application/json

Returns all users for the instance.

The response is of type object[].