简体中文
Get base collaborator user list
cURL
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 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response, return base collaborator user list.
The response is of type object.
object