GET api/WebApiOdata/GetAllCurrencyConverters?providerID={providerID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CurrencyConverterGridViewModel
NameDescriptionTypeAdditional 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": "9/19/2024",
    "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": "9/19/2024",
    "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>2024-09-19T08:36:00.1957962+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>2024-09-19T08:36:00.1957962+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>