Skip to main content
GET
/
user-data
/
doesUserExist
Check if User Exists
curl --request GET \
  --url https://www.api.baselink.tech/user-data/doesUserExist \
  --header 'bearer: <api-key>'
{
  "exists": true,
  "user": {},
  "user.id": "<string>",
  "user.userName": "<string>",
  "user.userEmail": "<string>",
  "message": "<string>"
}
Check if the current user exists in the system.
exists
boolean
Indicates if the current user exists in the system.
user
object
The user object if the user exists, null otherwise.
user.id
string
The unique identifier of the user.
user.userName
string
The display name of the user.
user.userEmail
string
The email address of the user.
message
string
Additional information about the user existence check.