Create api auth change emailPOST/api/auth/change-emailRequest bodyapplication/jsonobjectResponses200SuccessstringTry itServerCustom base URLOverrides the selected server when set.Bodyapplication/jsonRequest body{ "property1": null, "property2": null }SendRequestcURLJavaScriptPythonCopyCopiedcurl -X POST "/api/auth/change-email" \ -H "Content-Type: application/json" \ -d '{ "property1": null, "property2": null }'const response = await fetch("/api/auth/change-email", { method: "POST", headers: { "Content-Type": "application/json" }, body: "{\n \"property1\": null,\n \"property2\": null\n}" });import requests response = requests.post( "/api/auth/change-email", headers={ "Content-Type": "application/json" }, data="{\n \"property1\": null,\n \"property2\": null\n}", )Response200"string"