v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
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

emailsstring[]

Response

OK. Returns a list of Profile resources containing information about users on the account. Emails that could not be matched are not included.

accountIdnumber

The unique ID for the user's account.

usernamestring

Username of the user.

emailstring

Email of the user.

fullNamestring

Full name of the user.

idnumber

ID of the user.

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"
    }
  }
]