POST api/2.0/crm/currency/addrates This function requires authentication

Description

Adds currency rates specified in the request.

Parameters
Name Description Type Example
rates
sent in body
List of currency rates System.Collections.Generic.List{ASC.CRM.Core.CurrencyRate}
Example
POST api/2.0/crm/currency/addrates
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json

{
  "rates": [
    null
  ]
}
Returns

Currency information

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>