CRMchat APIBeta
Workspaces

Get workspace members

GET
/workspaces/{workspaceId}/members

Returns all members of a workspace.

Authorization

bearerAuth
AuthorizationBearer <token>

API key (sk_...) as Bearer token

In: header

Path Parameters

workspaceId*string

The unique identifier of the workspace

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/workspaces/string/members"
{  "data": [    {      "userId": "string",      "role": "admin",      "user": {        "name": "string",        "avatarUrl": "string",        "timezone": "string",        "telegramUsername": "string"      }    }  ]}