POST api/ExchangeRate/Add

Request Information

URI Parameters

None.

Body Parameters

ExchangeRateModel
NameDescriptionTypeAdditional information
ID

integer

None.

CurrencyName

string

None.

CurrencyRate

decimal number

None.

IsBaseCurrency

boolean

None.

OutletID

integer

None.

IsActive

boolean

None.

Symbol

string

None.

Outlet

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CurrencyName": "sample string 2",
  "CurrencyRate": 1.0,
  "IsBaseCurrency": true,
  "OutletID": 1,
  "IsActive": true,
  "Symbol": "sample string 3",
  "Outlet": "sample string 4"
}

application/xml, text/xml

Sample:
<ExchangeRateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <CurrencyName>sample string 2</CurrencyName>
  <CurrencyRate>1</CurrencyRate>
  <ID>1</ID>
  <IsActive>true</IsActive>
  <IsBaseCurrency>true</IsBaseCurrency>
  <Outlet>sample string 4</Outlet>
  <OutletID>1</OutletID>
  <Symbol>sample string 3</Symbol>
</ExchangeRateModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ExchangeRateResponse
NameDescriptionTypeAdditional information
ExchangeRate

ExchangeRateModel

None.

ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ExchangeRate": {
    "ID": 1,
    "CurrencyName": "sample string 2",
    "CurrencyRate": 1.0,
    "IsBaseCurrency": true,
    "OutletID": 1,
    "IsActive": true,
    "Symbol": "sample string 3",
    "Outlet": "sample string 4"
  },
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<ExchangeRateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
  <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode>
  <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText>
  <ExchangeRate xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
    <d2p1:CurrencyName>sample string 2</d2p1:CurrencyName>
    <d2p1:CurrencyRate>1</d2p1:CurrencyRate>
    <d2p1:ID>1</d2p1:ID>
    <d2p1:IsActive>true</d2p1:IsActive>
    <d2p1:IsBaseCurrency>true</d2p1:IsBaseCurrency>
    <d2p1:Outlet>sample string 4</d2p1:Outlet>
    <d2p1:OutletID>1</d2p1:OutletID>
    <d2p1:Symbol>sample string 3</d2p1:Symbol>
  </ExchangeRate>
</ExchangeRateResponse>