English
List a base collaborator
cURL
curl --request GET \ --url http://127.0.0.1:3000/api/base/{baseId}/collaborators \ --header 'Authorization: Bearer <token>'
{ "collaborators": [ { "userId": "<string>", "userName": "<string>", "email": "<string>", "role": "owner", "avatar": "<string>", "createdTime": "<string>", "type": "user", "resourceType": "space", "isSystem": true, "billable": 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
owner
creator
editor
commenter
viewer
Successful response, return base collaborator list.
Show child attributes
Was this page helpful?