GET api/Sales/GetCurrencies?AppId={AppId}&AppKey={AppKey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AppId

string

Required

AppKey

string

Required

Body Parameters

None.

Response Information

Resource Description

CurrencyResponse
NameDescriptionTypeAdditional information
code

string

None.

msg

string

None.

CurrencyList

Collection of Currency

None.

Response Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "msg": "sample string 2",
  "CurrencyList": [
    {
      "Currency_id": 1,
      "Currency_Code": "sample string 2",
      "Currency_Name": "sample string 3",
      "Exchange_Rate": 4.1
    },
    {
      "Currency_id": 1,
      "Currency_Code": "sample string 2",
      "Currency_Name": "sample string 3",
      "Exchange_Rate": 4.1
    }
  ]
}

text/xml

Sample:
<CurrencyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EConnect.Models">
  <CurrencyList>
    <Currency>
      <Currency_Code>sample string 2</Currency_Code>
      <Currency_Name>sample string 3</Currency_Name>
      <Currency_id>1</Currency_id>
      <Exchange_Rate>4.1</Exchange_Rate>
    </Currency>
    <Currency>
      <Currency_Code>sample string 2</Currency_Code>
      <Currency_Name>sample string 3</Currency_Name>
      <Currency_id>1</Currency_id>
      <Exchange_Rate>4.1</Exchange_Rate>
    </Currency>
  </CurrencyList>
  <code>sample string 1</code>
  <msg>sample string 2</msg>
</CurrencyResponse>