Skip to main content
GET
/
user-data
/
searchUserByEmail
/
:teamDataId
Search User by Email
curl --request GET \
  --url https://www.api.baselink.tech/user-data/searchUserByEmail/:teamDataId \
  --header 'bearer: <api-key>'
{
  "users": [
    {}
  ],
  "users[].id": "<string>",
  "users[].userName": "<string>",
  "users[].gitname": "<string>",
  "users[].userEmail": "<string>",
  "users[].profilePicture": "<string>",
  "users[].isTeamMember": true
}
Search for a user by email address within a team context.
users
array
Array of user objects matching the email search.
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[].profilePicture
string
URL of the user’s profile picture.
users[].isTeamMember
boolean
Whether the user is already a member of the team.