PUT /u/{username}.json does not change the email

According to the Discourse API Docs (Discourse API Docs), it should be possible to change the email via the referenced endpoint.

  1. Use this API-Endpoint: PUT /u/{username}.json
  2. Use this request body:
{
    "Name": "Test Name",
    "Email": "test@test.com"
}
  1. Received 200 OK. Name will change, Email not.

The response does not contain the “email” field.

1 Like

I recommend that you Reverse engineer the Discourse API and see what api call to use.

2 Likes

Hi xbd,

According to the documentation, changing the email uses this endpoint: /u/{username}/preferences/email.json: https://docs.discourse.org/#tag/Users/operation/updateEmail

However, it will send a confirmation link to the email address to be manually approved by the user. Until then, the email won’t be changed.

5 Likes

Thank you for your assistance. Maybe helpful to remove the email property from the PUT /u/{username.json} in the documentation. Could save time spent on debugging ;-).

The thing with the confirmation mail: I read about it on another topic. I don’t get the point. Just in case, Discourse is an application of many others in the project and the authentication of users is handled by a custom-made auth server (like my case). The auth server handles email confirmation. The applications should just do, what the auth server says. This is in my opinion the normal way. Otherwise it comes with multiple confirmation mails, different datasets…

2 Likes

Thank you for raising this. This is weird indeed. It may be a remnant of a past era. I’ll get some info and update the doc if needed. :+1:

2 Likes

Does the auth overrides email admin setting help with this?

4 Likes

Then you need to configure it to tell discourse that the email address has been validated and not update email on the API, but on your authentication server.

2 Likes

Thanks again for bringing this up and sorry about the time spent debugging. The API docs have been updated.

3 Likes