Skip to content

Edit Client

Supported Versions Last Updated
1.2.00 & higher
json output 1.14.00 & higher
2015/01/30
Action client-edit
Method GET, POST
Variables

username REQUIRED

firstname

lastname

company

email

Example Output

XML

Success:

 <status>success</status>

<statusmsg>Successfully edited client</statusmsg>

<username>username</username>

<email>emailaddress</email>

<firstname>firstname</firstname>

<lastname>lastname</lastname>

<company>company</company>

Error:

 <status>error</status>

<statusmsg>ERROR MESSAGE</statusmsg>

JSON

Success:

{

"status":"success",

"statusmsg":"Successfully edited client",

"username":"username",

"email":"emailaddress",

"firstname":"firstname",

"lastname":"lastname",

"company":"company"

}

Error:

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

Back to top