GET api/{database}/CurrencyInfo/{currencyId}

Gets the specified CurrencyInfo.



Request Information

Parameters

NameDescriptionAdditional information
currencyId The currencyId.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "currencyId": "sample string 1",
  "description": "sample string 2",
  "emuTypeId": "sample string 3",
  "euroBuyRate": 4.0,
  "euroExchangeRate": 5.0,
  "euroSellRate": 6.0,
  "isoCurrencyId": "sample string 7",
  "useDecimals": true
}

application/xml, text/xml

Sample:
<CurrencyInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.Base.Info">
  <CurrencyId>sample string 1</CurrencyId>
  <Description>sample string 2</Description>
  <EmuTypeId>sample string 3</EmuTypeId>
  <EuroBuyRate>4</EuroBuyRate>
  <EuroExchangeRate>5</EuroExchangeRate>
  <EuroSellRate>6</EuroSellRate>
  <IsoCurrencyId>sample string 7</IsoCurrencyId>
  <UseDecimals>true</UseDecimals>
</CurrencyInfo>