GET
/
share
/
{shareId}
/
view
/
collaborators
curl --request GET \
  --url 'https://app.teable.io/api/share/%7BshareId%7D/view/collaborators?fieldId=SOME_STRING_VALUE&skip=SOME_NUMBER_VALUE&take=SOME_NUMBER_VALUE&search=SOME_STRING_VALUE&type=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
[
  {
    "userId": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "avatar": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

shareId
string
required

Query Parameters

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

Response

200 - application/json
view collaborators
userId
string
required
userName
string
required
email
string
required
avatar
string | null