Hi Mark,
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mark > $cmd=array( > "protocol" => "XCP", > "action" => "modify", > "object" => "domain", > "cookie" => $cookie, > "attributes" => array( > "data" => "domain_auth_info", > "reg_password" => "test-done" > ) > ); For changing the profile password, please refer to page 43, section 8.8 of our API documentation located at http://resellers.tucows.com/opensrs/resources/docs/srsApiDoc.pdf The action is "change" (not modify) and the object is "password" (not domain). $cmd=array( "protocol" => "XCP", "action" => "change", "object" => "password", "cookie" => $cookie, "attributes" => array( "reg_password" => "test-done" ) ); Hope this helps, Frank Michlick -- Tucows Inc. Senior Systems Engineer
