Search Users by Work eMail

Hi, I'm trying to find Users via /api/v2/users/search API function and look for Work email address as a Search value - no results. Regular mail (main email) and other fields works.

Part of "me" for the searched user:

"addresses": [
{
"address": "daniel.szlaski@inin.com",
"mediaType": "EMAIL",
"type": "WORK"
}
],

When trying to find this user via /api/v2/users/search with following body, it returns 0 results:

{
"sortOrder": "asc",
"sortBy": "address",
"pageSize": 1,
"pageNumber": 1,
"query": [
{
"fields": ["addresses"],
"value": "daniel.szlaski@inin.com",
"type": "EXACT"
}
]
}

Any idea what's wrong there?

Have you tried using /v2/search/suggest? https://developer.mypurecloud.com/api/rest/v2/search/index.html#postSearchSuggest

Hi, still no luck.
It works for some of the fields like (chat.jabberId)

"fields": ["chat.jabberId"],

but for others not.
What I need is to find user by Work Mail address.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.