Skip to main content
GET
/
users
List members
curl --request GET \
  --url https://productlane.com/api/v1/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "role": "ADMIN",
    "userId": "<string>",
    "workspaceId": "<string>",
    "user": {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "imageUrl": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

Successful response

id
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
role
enum<string>
required
Available options:
ADMIN,
USER,
VIEWER
userId
string
required
workspaceId
string
required
user
object
required