Returns a summary table with the rates for the currency specified in the request.
Name | Description | Type | Example |
currency
sent in url
|
Currency (abbreviation)
Allowed values: EUR, RUB etc. You can get the whole list of available currencies by API
|
string | some text |
GET api/2.0/crm/settings/currency/summarytable?currency=%22some+text%22 Host: yourportal.onlyoffice.com Content-Type: application/json Accept: application/json
Dictionary of currency rates for the specified currency
application/json
{ "status": 0, "response": [ { "Rate": 11.0, "Title": "Chinese Yuan", "Symbol": "¥", "Abbreviation": "CNY", "CultureName": "CN", "IsConvertable": true, "IsBasic": false } ] }
text/xml
<result> <status>0</status> <response> <Rate>11</Rate> <Title>Chinese Yuan</Title> <Symbol>¥</Symbol> <Abbreviation>CNY</Abbreviation> <CultureName>CN</CultureName> <IsConvertable>True</IsConvertable> <IsBasic>False</IsBasic> </response> </result>