Skip to main content
GET
/
user-data
/
list
Get All Users
curl --request GET \
  --url https://www.api.baselink.tech/user-data/list \
  --header 'bearer: <api-key>'
{
  "users": [
    {}
  ],
  "users[].id": "<string>",
  "users[].userName": "<string>",
  "users[].gitname": "<string>",
  "users[].userEmail": "<string>",
  "users[].userSub": "<string>",
  "users[].profilePicture": "<string>",
  "users[].bio": "<string>",
  "users[].createdAt": "<string>",
  "users[].updatedAt": "<string>"
}
Retrieve a list of all users in the system.
users
array
Array of user objects.
users[].id
string
The unique identifier of the user.
users[].userName
string
The display name of the user.
users[].gitname
string
The GitHub username of the user.
users[].userEmail
string
The email address of the user.
users[].userSub
string
The user sub identifier.
users[].profilePicture
string
URL of the user’s profile picture.
users[].bio
string
User’s bio/description.
users[].createdAt
string
The creation timestamp of the user.
users[].updatedAt
string
The last update timestamp of the user.