I am attempting to use the management API to search for a user and I am using the following command from Postman:
https://{{auth0_domain}}/api/v2/users?q=email=first.last+suffix@domain.com&search_engine=v3
and I am getting an empty response.
When I use https://{{auth0_domain}}/api/v2/users?q=email=first.last*@domain.com&search_engine=v3
I am returned all of the users with each of various suffixes.
I have tried escaping the ‘+’ symbol with a backslash (+) and tried variations that use exact searches with quotation marks around the email address. Unfortunately, the wildcard version is not a good solution for me and I am hoping that I am missing something straightforward.
Anyone have any thoughts, solutions, or references?
Thank you.