Difference between revisions of "PHPGetUserContactsFullExample"

From Rackspace Email & Apps API
Jump to: navigation, search
(New page: <pre> <?php $client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl'); $res = $client->__soapCall('GetUserContactsFull', array('ResellerU...)
 
(No difference)

Latest revision as of 16:58, 25 August 2008

<?php

$client = new SoapClient('https://secure.webmail.us/mail4/soap/soap_server.php?wsdl');

$res = $client->__soapCall('GetUserContactsFull',
                     array('ResellerUsername' => 'reselleruser',
                           'ResellerPassword' => 'resellerpass',
                           'HostName'         => 'somedomain',
                           'UserID'           => 'someuserID',
                           $contactarray));

print_r($res);
print_r($contactarray);

?>