简体中文
Get organization users
cURL
curl --request GET \ --url 'https://app.teable.cn/api/organization/%7BorganizationId%7D/users?skip=SOME_NUMBER_VALUE&limit=SOME_NUMBER_VALUE&search=SOME_STRING_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{ "users": [ { "id": "<string>", "name": "<string>", "email": "<string>", "avatar": "<string>", "createdTime": "<string>", "isAdmin": true, "isExternal": true, "deactivatedTime": "<string>" } ], "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The response is of type object.
object