Index: /binary-improvements2/WebServer/src/WebAPI/APIs/RegisterUser.cs
===================================================================
--- /binary-improvements2/WebServer/src/WebAPI/APIs/RegisterUser.cs	(revision 415)
+++ /binary-improvements2/WebServer/src/WebAPI/APIs/RegisterUser.cs	(revision 416)
@@ -2,4 +2,5 @@
 using System.Collections.Generic;
 using System.Net;
+using System.Text;
 using System.Text.RegularExpressions;
 using JetBrains.Annotations;
@@ -85,5 +86,11 @@
 			string remoteEndpointString = _context.Request.RemoteEndPoint!.ToString ();
 			SessionHandler.HandleUserIdLogin (ParentWeb.ConnectionHandler, _context, remoteEndpointString, SessionHandler.userPassLoginName,
-				SessionHandler.userPassErrorPage, username, regData.PlatformUserId, regData.CrossPlatformUserId);
+				SessionHandler.userPassErrorPage, username, regData.PlatformUserId, regData.CrossPlatformUserId, false);
+
+			_context.Response.StatusCode = (int)HttpStatusCode.Created;
+			_context.Response.ContentType = WebUtils.MimePlain;
+			_context.Response.ContentEncoding = Encoding.UTF8;
+			_context.Response.ContentLength64 = 0;
+			// _context.Response.OutputStream.Write (jsonData.Array!, 0, jsonData.Count);
 		}
 
