GET
/
base
/
{baseId}
/
collaborators
curl --request GET \
  --url 'https://app.teable.io/api/base/%7BbaseId%7D/collaborators?includeSystem=SOME_BOOLEAN_VALUE&skip=SOME_NUMBER_VALUE&take=SOME_NUMBER_VALUE&search=SOME_STRING_VALUE&type=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "collaborators": [
    {
      "userId": "<string>",
      "userName": "<string>",
      "email": "<string>",
      "role": "owner",
      "avatar": "<string>",
      "createdTime": "<string>",
      "type": "user",
      "resourceType": "space",
      "isSystem": true,
      "base": {
        "id": "<string>",
        "name": "<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

includeSystem
boolean | null
skip
number | null
take
number | null
type
enum<string>
Available options:
user,
department

Response

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