POST api/2.0/crm/currency/addrates
Adds currency rates specified in the request.
Name |
Description |
Type |
Example |
rates
sent in body
|
List of currency rates
|
System.Collections.Generic.List{ASC.CRM.Core.CurrencyRate}
|
|
POST api/2.0/crm/currency/addrates
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"rates": null
}
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>