Users
Search Users By Email
Retrieves information about all users on the authenticated account whose email is provided. Matching is case-insensitive and requires an exact match; emails that do not correspond to a user on the account are excluded from results.
post/v1/users/searchByEmail
Request body
Response
OK. Returns a list of Profile resources containing information about users on the account. Emails that could not be matched are not included.
Example response
[
{
"accountId": 100,
"username": "johndoe",
"email": "john-doe@example.com",
"fullName": "John Doe",
"id": 101,
"avatar": {
"type": "url",
"link": "https://www.gravatar.com/avatar/00000000000000000000000000000000?s=200&d=404"
}
}
]