cURL
curl --request GET \ --url https://api.reqlick.com/workspaces/{url}/members \ --header 'Authorization: Bearer <token>'
[ { "user": { "name": "Example", "email": "[email protected]", "image": "https://example.com/logo.png" }, "email": null, "role": "MEMBER", "status": "ACCEPTED", "expires": null, "createdAt": "2024-06-05T12:20:26.768Z" } ]
Retrieve a list of members for the authenticated workspace.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Workspace URL
Successfully retrieved members
Show child attributes
User's name
"Example"
User's email
"[email protected]"
User's image URL
"https://example.com/logo.png"
User's email (nullable)
null
User's role
"MEMBER"
User's status
"ACCEPTED"
Expiration date (nullable)
Creation date
"2024-06-05T12:20:26.768Z"