Update the profile for a specific user account.
PUT /account/{userId}/profile
- AuthSessionId - Identifier for current session
- AuthSessionSecret - Secret for current session
- userId - Identifier for current user
- username - Username to update to
- email - E-mail address to update to
- userId - Identifier for the user
- ErrorCode1 - Caused by missing identifier
- ErrorCode2 - Username was not given
- ErrorCode3 - Server exploded
GET /account/1692/profile
{
username: "NewUsername",
email: "Email@Email.com"
}
200 OK
{
userId: 1692
}