Skip to main content
GET
/
user-data
/
getUserData
/
:userDataId
Get User Data
curl --request GET \
  --url https://www.api.baselink.tech/user-data/getUserData/:userDataId \
  --header 'bearer: <api-key>'
{
  "user": {},
  "user.id": "<string>",
  "user.userName": "<string>",
  "user.gitname": "<string>",
  "user.userEmail": "<string>",
  "user.userSub": "<string>",
  "user.userConfig": {},
  "user.profilePicture": "<string>",
  "user.bio": "<string>",
  "user.createdAt": "<string>",
  "user.updatedAt": "<string>",
  "user.teams": [
    {}
  ],
  "user.achievements": [
    {}
  ]
}
Retrieve detailed user data for a specific user.
user
object
The detailed user object.
user.id
string
The unique identifier of the user.
user.userName
string
The display name of the user.
user.gitname
string
The GitHub username of the user.
user.userEmail
string
The email address of the user.
user.userSub
string
The user sub identifier.
user.userConfig
object
User configuration settings.
user.profilePicture
string
URL of the userโ€™s profile picture.
user.bio
string
Userโ€™s bio/description.
user.createdAt
string
The creation timestamp of the user.
user.updatedAt
string
The last update timestamp of the user.
user.teams
array
Array of teams the user belongs to.
user.achievements
array
Array of user achievements.