A user account can be created by sending a request with the user’s name and password and optionally with an email address.
No
JSON
GET and POST
The sent JSON object data should contain the following parameters:
The username of the account to be created
The password for the new user
Optionally, the email address of the new user
data={ "name":"alex", "pass":"secret", "email":"alex@gmail.com" }
{ "APIVersion":2, "result":1 }
In case of an error, a different response is sent. Please take a look at Error Responses.