Get user info by metadata instead of user id

Is this possible to get user info using user metadata key

currently i have used the user_id but in some condition i have just metadata of that user so it is possible to get user info by metadata key.

used api:-
https://api-********-2DA7-45DA-90DA-C89CEBC29492.sendbird.com/v3/users/xyz@abc.com

required api:-
https://api-***-2DA7-45DA-90DA-C89CEBC29492.sendbird.com/v3//metadata_key

Hi @manishahire,

Using the Platform API you can list users, and add the metadatakey and metadatavalues_in parameters. If the values are unique, it would b reasonable to expect it to return a specific user.

An example query would look like:

GET https://api-{APP_ID}.sendbird.com/v3/users?metadatakey=Key&metadatavalues_in=Value1,Value2

Thank you @Tyler api looks good to me.