GET
/
workspaces
/
{url}
/
members
curl --request GET \
  --url https://api.reqlick.com/workspaces/{url}/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "user": {
      "name": "Example",
      "email": "user@example.com",
      "image": "https://example.com/logo.png"
    },
    "email": null,
    "role": "MEMBER",
    "status": "ACCEPTED",
    "expires": null,
    "createdAt": "2024-06-05T12:20:26.768Z"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

url
string
required

Workspace URL

Response

200
application/json
Successfully retrieved members

The response is of type object[].