/register.php GET User Exists

This will check if a particular user exists or not

Request     Test

Parameter Type Description
username string this the username for checking if exists or not

Response Param Error

{
   "code":-9999,
   "msg":"Parameter Error"
}

Response Success Username exists

{
   "code":202,
   "value":true
}

Response Success Username does't exists

{
   "code":202,
   "value":false
}