v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Users

Search Users

Retrieves information about users on the authenticated account whose name partially matches the provided search string. Matching is case-insensitive and supports partial matches across first name, last name, and full name; for example, "be" matches both "Ben Dilts" and "David Benson". Results are ranked by relevance and bounded to a maximum of 50 users.

post/v1/users/search

Request body

searchstring

Response

OK. Returns a list of Profile resources containing information about users on the account whose name matches the search string.

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