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
Response
OK. Returns a list of Profile resources containing information about users on the account whose name matches the search string.
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"
}
}
]