Hi Mark,
-----Original Message-----
From: owner-dev-list@opensrs.org [mailto:owner-dev-list@opensrs.org]On
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
This archive was generated by hypermail 2.1.3 : Tue Oct 19 2004 - 23:37:39 EDT