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`1[ASC.CRM.Core.CurrencyRate]
|
|
POST api/2.0/crm/currency/addrates
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"rates": [
{
"fromCurrency": null,
"toCurrency": null,
"rate": 0.0,
"id": 0
}
]
}
application/json
{
"status": 0,
"response": [
{
"fromCurrency": "EUR",
"toCurrency": "USD",
"rate": 1.1,
"id": 1
}
]
}
text/xml
<result>
<status>0</status>
<response>
<fromCurrency>EUR</fromCurrency>
<toCurrency>USD</toCurrency>
<rate>1.1</rate>
<id>1</id>
</response>
</result>