Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

How to access Currency Exchange Rate object via XML worksheet

This article provides the information about how to access the Currency Exchane Rate object via XML worksheet.

This request format will update any existing YCurrencyInfo objects that match the "code" attribute. In addition, currency codes that have no existing match will cause new
YCurrencyInfo objects to be created (in the example below, we have created a currency for Mars.)


"code" and "name" are required attributes. "rate" indicates how many units of the default currency (U.S. dollars, in this example) are required to purchase one unit of the named
currency. These example rates are for illustration only.

<TeamConnectRequest>
<Authentication>
    <Username>fred</Username>
    <Password>fred</Password>
</Authentication>
<Multicurrency>
<currency code='GBP' name='United Kingdom, Pounds' rate='1.4' />
<currency code='USD' name='United States, Dollar' symbol='$' rate='1' />
<currency code='CAD' rate='.8' name='Canada, Dollar' />
<currency code='BGL' rate='.5' name='Bulgaria, Lev' />
<currency code='XOF' rate='.3' name='West Africa, Shilling' />
<currency code='KYD' rate='.7' name='Cayman Islands, Dollar' />
<currency code='EUR' name='Euro Member Countries, Euro' rate='1.2' />
<currency code='MAR' rate='9' name='Mars, Phobos' />
</Multicurrency>
</TeamConnectRequest>
  • Was this article helpful?