Retrieves the properties and relationships of a currency exchange rate object for Business Central.
HTTP request
Replace the URL prefix for Business Central depending on environment following the guideline.
GET businesscentralPrefix/companies({id})/currencyExchangeRates({id})
Request headers
| Header | Value |
|---|---|
| Authorization | Bearer {token}. Required. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK response code and a currencyExchangeRate object in the response body.
Example
Request
Here's an example of the request.
GET https://{businesscentralPrefix}/api/v2.0/companies({id})/currencyExchangeRates({id})
Response
Here's an example of the response.
{
"id": "USD-230501",
"currencyCode": "USD",
"startingDate": "2023-05-01",
"exchangeRateAmount": 1.08,
"relationalCurrencyCode": "EUR",
"relationalExchangeRateAmount": 0.93,
"lastModifiedDateTime": "2023-05-01T10:15:32Z"
}