Get user by e-mail

We are creating users and topics via API. We need to check if a user with such email had been created before. If yes, then we create a topic from the existing user.

So I need an API call “get username by email, if any”. How can I do that? I only found the reverse one.

There’s a link mentioned in several topics, that might have the answer, but it’s broken.
https://meta.discourse.org/t/api-best-way-to-get-user-details-by-email/20806/10

2 Likes

That is a bit of a privacy violation so don’t expect it to be easy.

Why? The admin of the forum can see search user by email via the web interface, what’s the difference if he does the same via API?

Sure if you use an admin api key that should work.

That’s exactly my question. There’s a “Get a single user by username” call in the API docs, but how do I get a single user by email?

1 Like

Follow the method here since you are an admin and know how to look users up by email address, yes?

3 Likes

Got it, thank you!
Posting it here for anyone else who might need it.
[discourse_url]/admin/users/list/active.json?filter=[email_name]%40[email_domain]&show_emails=false&order=&ascending=&page=1

10 Likes

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