Skip to main content
GET
/
v1
/
workspaces
/
{workspaceId}
/
members
List members in workspace
curl --request GET \
  --url https://app.quick.bot/api/v1/workspaces/{workspaceId}/members \
  --header 'Authorization: Bearer <token>'
{
  "members": [
    {
      "workspaceId": "<string>",
      "user": {
        "name": "<string>",
        "email": "<string>",
        "image": "<string>"
      },
      "role": "ADMIN",
      "userId": "<string>"
    }
  ],
  "invitations": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "email": "<string>",
      "type": "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

Successful response

members
object[]
required
invitations
object[]
required
I