GET api/2.0/crm/settings/currency
Returns a list of all the currencies currently available on the portal.
This method doesn't have any parameters.
GET api/2.0/crm/settings/currency
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
List of available currencies
application/json
{
"status": 0,
"response": [
{
"Title": "Chinese Yuan",
"Symbol": "¥",
"Abbreviation": "CNY",
"CultureName": "CN",
"IsConvertable": true,
"IsBasic": false
}
]
}
text/xml
<result>
<status>0</status>
<response>
<Title>Chinese Yuan</Title>
<Symbol>¥</Symbol>
<Abbreviation>CNY</Abbreviation>
<CultureName>CN</CultureName>
<IsConvertable>True</IsConvertable>
<IsBasic>False</IsBasic>
</response>
</result>