GET api/Admin/CurrencyConversionRate?CurrencyTypeIdFrom={CurrencyTypeIdFrom}&CurrencyTypeIdTo={CurrencyTypeIdTo}
This API method will allow getting the collection of any currency conversion rate between two currency types.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrencyTypeIdFrom |
The primary identifier of the currency type which the conversion rate applies from. |
integer |
Required |
| CurrencyTypeIdTo |
The primary identifier of the currency type which the conversion rate applies to. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of 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
<ListOfCurrencyConversionRate>
<CurrencyConversionRate>
<ID>1</ID>
<CurrencyTypeFrom>2</CurrencyTypeFrom>
<CurrencyTypeTo>3</CurrencyTypeTo>
<RateCommission>4</RateCommission>
<StartDate>10/28/2025 17:47:06</StartDate>
<EndDate>10/28/2025 17:47:06</EndDate>
<CurrencyConversionAreaTypeID>7</CurrencyConversionAreaTypeID>
<IsActive>True</IsActive>
<DateCreated>10/28/2025 17:47:06</DateCreated>
<CreatedBy>sample string 10</CreatedBy>
<DateLastModified>10/28/2025 17:47:06</DateLastModified>
<LastModifiedBy>sample string 11</LastModifiedBy>
</CurrencyConversionRate>
<CurrencyConversionRate>
<ID>1</ID>
<CurrencyTypeFrom>2</CurrencyTypeFrom>
<CurrencyTypeTo>3</CurrencyTypeTo>
<RateCommission>4</RateCommission>
<StartDate>10/28/2025 17:47:06</StartDate>
<EndDate>10/28/2025 17:47:06</EndDate>
<CurrencyConversionAreaTypeID>7</CurrencyConversionAreaTypeID>
<IsActive>True</IsActive>
<DateCreated>10/28/2025 17:47:06</DateCreated>
<CreatedBy>sample string 10</CreatedBy>
<DateLastModified>10/28/2025 17:47:06</DateLastModified>
<LastModifiedBy>sample string 11</LastModifiedBy>
</CurrencyConversionRate>
</ListOfCurrencyConversionRate>
application/json, text/json
[
{
"ID": 1,
"CurrencyTypeFrom": 2,
"CurrencyTypeTo": 3,
"RateCommission": 4.0,
"StartDate": "2025-10-28T17:47:06.7155923-04:00",
"EndDate": "2025-10-28T17:47:06.7155923-04:00",
"CurrencyConversionAreaTypeID": 7,
"IsActive": true,
"DateCreated": "2025-10-28T17:47:06.7155923-04:00",
"CreatedBy": "sample string 10",
"DateLastModified": "2025-10-28T17:47:06.7155923-04:00",
"LastModifiedBy": "sample string 11"
},
{
"ID": 1,
"CurrencyTypeFrom": 2,
"CurrencyTypeTo": 3,
"RateCommission": 4.0,
"StartDate": "2025-10-28T17:47:06.7155923-04:00",
"EndDate": "2025-10-28T17:47:06.7155923-04:00",
"CurrencyConversionAreaTypeID": 7,
"IsActive": true,
"DateCreated": "2025-10-28T17:47:06.7155923-04:00",
"CreatedBy": "sample string 10",
"DateLastModified": "2025-10-28T17:47:06.7155923-04:00",
"LastModifiedBy": "sample string 11"
}
]