Skip to main content
GET
/
v2
/
workspaces
/
{workspaceId}
/
members
Get Workspace Members
curl --request GET \
  --url http://localhost:3000/api/v2/workspaces/{workspaceId}/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "role": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

workspaceId
string
required

Response

List of workspace members

id
string
required
name
string
required
email
string
required
role
string
required
I