GET
/
base
/
{baseId}
/
collaborators
/
users
curl --request GET \
  --url 'https://app.teable.cn/api/base/%7BbaseId%7D/collaborators/users?search=SOME_STRING_VALUE&skip=SOME_NUMBER_VALUE&take=SOME_NUMBER_VALUE&includeSystem=SOME_BOOLEAN_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "users": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "avatar": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

baseId
string
required

Query Parameters

skip
number | null
take
number | null
includeSystem
boolean | null

Response

200 - application/json
Successful response, return base collaborator user list.
users
object[]
required
total
number
required