Skip to content
This repository has been archived by the owner on Jun 28, 2020. It is now read-only.

Register

enepomnyaschih edited this page Sep 13, 2010 · 4 revisions

Parameters

memberId String Proper player name (login)
password String User password

Success response

{
  success: true
}

Possible error responses

memberId length is less than 2 symbols:

{
  success: false,
  errorId: "ERROR_MEMBER_ID_TOO_SHORT"
}

memberId length is more than 30 symbols:

{
  success: false,
  errorId: "ERROR_MEMBER_ID_TOO_LONG"
}

memberId is busy:

{
  success: false,
  errorId: "ERROR_MEMBER_ID_BUSY"
}

password length is less than 6 symbols:

{
  success: false,
  errorId: "ERROR_PASSWORD_TOO_SHORT"
}

password length is more than 30 symbols:

{
  success: false,
  errorId: "ERROR_PASSWORD_TOO_LONG"
}
Clone this wiki locally