简体中文
List a base collaborator
cURL
curl --request GET \ --url 'https://app.teable.cn/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 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
user
department
Successful response, return base collaborator list.
The response is of type object.
object