Skip to main content
POST
/
user-data
Create User
curl --request POST \
  --url https://www.api.baselink.tech/user-data \
  --header 'bearer: <api-key>'
{
  "success": true,
  "user": {},
  "user.id": "<string>",
  "user.userName": "<string>",
  "user.gitname": "<string>",
  "user.userEmail": "<string>",
  "user.createdAt": "<string>"
}
Create a new user account with profile information and configuration.
success
boolean
Indicates if the user was created successfully.
user
object
The newly created 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.createdAt
string
The creation timestamp of the user.