跳转到主要内容
GET
/
share
/
{shareId}
/
view
/
collaborators
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/share/{shareId}/view/collaborators \
  --header 'Authorization: Bearer <token>'
[
  {
    "userId": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "avatar": "<string>"
  }
]

授权

Authorization
string
header
必填

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

路径参数

shareId
string
必填

查询参数

fieldId
string
skip
number | null
take
number | null
type
enum<string>
可用选项:
user,
department

响应

200 - application/json

view collaborators

userId
string
必填
userName
string
必填
email
string
必填
avatar
string | null
Last modified on December 10, 2025