GET
/
v2
/
workspaces
/
{workspaceId}
/
users
List users assigned to a workspace
curl --request GET \
  --url https://api.pelanor.io/v2/workspaces/{workspaceId}/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "email": "<string>",
      "role": "ADMIN"
    }
  ]
}

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

200
application/json

A successful response.

The response is of type object.