Skip to content

Create Client.

Supported Versions Last Updated
1.2.00 & higher
json output 1.14.00 & higher
2013/04/30
Action client-create
Method GET, POST
Variables

username [username]

password [password]

email [email address]

firstname [first name]

lastname [last name]

company [compnay]

rdtype [json] For json output specify json or for default output leave blank. This variable is optional

Example Output

XML

Success:

 <status>success</status>

<statusmsg>Successfully added client</statusmsg>

<username>vps123</username>

<password>123456</passowrd>

<email>email@address.com</email>

<firstname>phill</firstname>

<lastname>smith</lastname>

Error:

 <status>error</status>

<statusmsg>ERROR MESSAGE</statusmsg>

JSON

Success:

 {

"status":"success",

"statusmsg":"Successfully added client",

"username":"vps123",

"password":"123456",

"email":"email@address.com",

"firstname":"phill",

"lastname":"smith"

}

Error:

 {"status":"error","statusmsg":"ERROR MESSAGE"}

Back to top