GET api/WebApiOdata/GetAllCurrencyConverters?providerID={providerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CurrencyConverterGridViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrencyId | integer |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| Status | boolean |
None. |
|
| ExchangeRate | decimal number |
None. |
|
| CurrencySymbol | string |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| CurrencyTypeId | byte |
None. |
|
| CurrencyType | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"CurrencyId": 1,
"Name": "sample string 2",
"Code": "sample string 3",
"Status": true,
"ExchangeRate": 5.1,
"CurrencySymbol": "sample string 6",
"CreatedBy": 7,
"CreatedDate": "10/29/2025",
"CurrencyTypeId": 64,
"CurrencyType": "sample string 9"
},
{
"CurrencyId": 1,
"Name": "sample string 2",
"Code": "sample string 3",
"Status": true,
"ExchangeRate": 5.1,
"CurrencySymbol": "sample string 6",
"CreatedBy": 7,
"CreatedDate": "10/29/2025",
"CurrencyTypeId": 64,
"CurrencyType": "sample string 9"
}
]
application/xml, text/xml
Sample:
<ArrayOfCurrencyConverterGridViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Settings">
<CurrencyConverterGridViewModel>
<Code>sample string 3</Code>
<CreatedBy>7</CreatedBy>
<CreatedDate>2025-10-29T16:24:14.342969+00:00</CreatedDate>
<CurrencyId>1</CurrencyId>
<CurrencySymbol>sample string 6</CurrencySymbol>
<CurrencyType>sample string 9</CurrencyType>
<CurrencyTypeId>64</CurrencyTypeId>
<ExchangeRate>5.1</ExchangeRate>
<Name>sample string 2</Name>
<Status>true</Status>
</CurrencyConverterGridViewModel>
<CurrencyConverterGridViewModel>
<Code>sample string 3</Code>
<CreatedBy>7</CreatedBy>
<CreatedDate>2025-10-29T16:24:14.342969+00:00</CreatedDate>
<CurrencyId>1</CurrencyId>
<CurrencySymbol>sample string 6</CurrencySymbol>
<CurrencyType>sample string 9</CurrencyType>
<CurrencyTypeId>64</CurrencyTypeId>
<ExchangeRate>5.1</ExchangeRate>
<Name>sample string 2</Name>
<Status>true</Status>
</CurrencyConverterGridViewModel>
</ArrayOfCurrencyConverterGridViewModel>