getCurrencies

Gets a list of the currencies available in the system.

Returns

A list of the currencies available in the system is returned.

Errors

java.lang.Exception
A system error occurred when the request was being processed.
AccessException
The user does not have access to the currency conversion manager.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:ws="http://ws.tririga.com">
   <soapenv:Body>
      <ws:getCurrencies/>
   </soapenv:Body>
</soapenv:Envelope>

Sample response

<soap:Envelope 
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soap:Body>
      <getCurrenciesResponse xmlns="http://ws.tririga.com">
         <out>
            <ns1:Currency xmlns:ns1="http://dto.ws.tririga.com">
               <abbreviation xmlns="http://dto.ws.tririga.com">USD</abbreviation>
               <decimal xmlns="http://dto.ws.tririga.com">.</decimal>
               <delimiter xmlns="http://dto.ws.tririga.com">,</delimiter>
               <format xmlns="http://dto.ws.tririga.com">###,###.00</format>
               <name xmlns="http://dto.ws.tririga.com">US Dollars</name>
               <symbol xmlns="http://dto.ws.tririga.com">$</symbol>
            </ns1:Currency>
         </out>
      </getCurrenciesResponse>
   </soap:Body>
</soap:Envelope>