GET api/Admin/CurrencyConversionRate/{id}
This API method will allow getting specific conversion rate by the primary identifier.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The primary identifier of the currency conversion rate. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CurrencyConversionRate| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The primary identifier of the currency conversion rate. |
integer |
None. |
| CurrencyTypeFrom |
This is the identifier of the selected currency where rate will be applied. |
integer |
None. |
| CurrencyTypeTo |
This is the identifier of the selected currency where rate will be applied. |
integer |
None. |
| RateCommission |
Rate at which this currency is converted from the Base Currency. |
decimal number |
None. |
| StartDate |
Date that this rate is in effect from. |
date |
None. |
| EndDate |
Date that this rate is in effect to. |
date |
None. |
| CurrencyConversionAreaTypeID |
Area of the system that this rate is applicable for. |
integer |
None. |
| IsActive |
Indicates if this rate is currently active. |
boolean |
None. |
| DateCreated |
Date when this record was created. |
date |
None. |
| CreatedBy |
User name of person who created this record. |
string |
None. |
| DateLastModified |
Last date when this record was modified. |
date |
None. |
| LastModifiedBy |
User name of last person who modified this record. |
string |
None. |
Response Formats
application/xml, text/xml
<CurrencyConversionRate> <ID>1</ID> <CurrencyTypeFrom>2</CurrencyTypeFrom> <CurrencyTypeTo>3</CurrencyTypeTo> <RateCommission>4</RateCommission> <StartDate>11/03/2025 07:14:56</StartDate> <EndDate>11/03/2025 07:14:56</EndDate> <CurrencyConversionAreaTypeID>7</CurrencyConversionAreaTypeID> <IsActive>True</IsActive> <DateCreated>11/03/2025 07:14:56</DateCreated> <CreatedBy>sample string 10</CreatedBy> <DateLastModified>11/03/2025 07:14:56</DateLastModified> <LastModifiedBy>sample string 11</LastModifiedBy> </CurrencyConversionRate>
application/json, text/json
{
"ID": 1,
"CurrencyTypeFrom": 2,
"CurrencyTypeTo": 3,
"RateCommission": 4.0,
"StartDate": "2025-11-03T07:14:56.6789264-05:00",
"EndDate": "2025-11-03T07:14:56.6789264-05:00",
"CurrencyConversionAreaTypeID": 7,
"IsActive": true,
"DateCreated": "2025-11-03T07:14:56.6789264-05:00",
"CreatedBy": "sample string 10",
"DateLastModified": "2025-11-03T07:14:56.6789264-05:00",
"LastModifiedBy": "sample string 11"
}