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