GET api/2.0/crm/currency/rates This function requires authentication

Description

Returns a list of all the currency rates.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/crm/currency/rates
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of currency rates

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "FromCurrency": "EUR",
      "ToCurrency": "USD",
      "Rate": "1.1",
      "id": 1234
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <FromCurrency>EUR</FromCurrency>
    <ToCurrency>USD</ToCurrency>
    <Rate>1.1</Rate>
    <id>1234</id>
  </response>
</result>