GET api/2.0/crm/currency/rates/{id}
Returns a currency rate by ID.
Name |
Description |
Type |
Example |
id
sent in url
|
Currency rate ID
|
number
|
1234
|
GET api/2.0/crm/currency/rates/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
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>