API V3 - Company level
cURL
curl --request GET \ --url https://paradigm-preprod.lighton.ai/api/v3/company/workspaces/{id}/members \ --header 'Authorization: Bearer <token>'
{ "users": [ { "id": 123, "email": "<string>", "role": "<string>" } ], "groups": [ { "id": 123, "name": "<string>", "role": "<string>" } ] }
Returns the list of members linked to a workspace in the authenticated user’s company. This endpoint can only be used by company-level admins or higher.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
V3 Response serializer for workspace members.
Show child attributes