Reseller only method.
Retrieve details of a merchant's account.
| Type | Name | Description |
| ueSecurityToken | Token | Reseller security token, used to identify reseller and validate request. |
| integer | MerchantID | Merchant ID number assigned by the gateway to an active merchant |
| MerchantObject | Returns merchant account information including: ID, Company, Contact, Address, Email, Phone, and Fax. |
For directions on how to set up the WSDL link, create “$token” and “$client”, go to PHP Soap How-to.
<?php>
try {
$MerchantID=2;
$res=$client->getMerchant($restoken, $MerchantID);
$this->assertEquals($res->MerchID, $MerchantID);
$this->assertEquals($res->Zip, '12311');
}
catch (SoapFault $e) {
echo $client->__getLastRequest();
echo $client->__getLastResponse();
die("getMerchant failed: " .$e->getMessage());
}
?>