Retrieves an array of currencies supported by a merchant account.
Depending on the merchant account configuration, different currencies are available for multi-currency processing. This method will return an array containing the currencies that are supported by the merchant account.
If multi-currency processing is not supported, the array will be empty.
To view the account details for a particular merchant account, including whether or not the account supports multi-currency processing, use the getAccountDetails method.
Each currency type is assigned a three digit numeric code (ie: USD=840, Japanese yen=392). You must enter the three digit code for both the original currency and the converted currency in a conversion. The Currency Code list provides all of the three digit codes and their corresponding currencies for international currency conversion.
If you would like to add support for multi-currency transactions to a merchant account please contact the merchant's service provider or customer service.
CurrencyObject getSupportedCurrencies ( ueSecurityToken Token )
Type |
Name |
Description |
Token |
Merchant security token: used to identify merchant and validate transaction. |
Returns an array of currencies supported by the merchant account for use with multi-currency processing. |
<?php
try {
$currencies = $client->getSupportedCurrencies($token);
print_r($currencies);
}
catch(SoapFault $e) {
die("soap fault: " .$e->getMessage(). "\n\nRequest: " .
$this->client->__getLastResponse());
}
?>
NOTE: A bug in PEAR::Soap version 0.11.0 causes the first two currencies to be dropped. To correctly use getSupportedCurrencies you must remove the comment on line 786 of SOAP/Base.php.
<?php
$params=array("Token"=>$token);
$currencies=$client->call('getSupportedCurrencies', $params);
print_r($currencies);
?>
Dim response() As eBizCharge.CurrencyObject
response = client.getSupportedCurrencies(token)
MsgBox(response.Length)
try
{
eBizCharge.CurrencyObject[] currency = client.getSupportedCurrencies(token);
MessageBox.Show(string.Concat(currency.Length));
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}