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
user
object
email
string | null

User's email (nullable)

Example:

null

role
string

User's role

Example:

"MEMBER"

status
string

User's status

Example:

"ACCEPTED"

expires
string | null

Expiration date (nullable)

Example:

null

createdAt
string

Creation date

Example:

"2024-06-05T12:20:26.768Z"