POST api/GetAddedCurrencyList

Request Information

URI Parameters

None.

Body Parameters

Jsonparams
NameDescriptionTypeAdditional information
jsonstring

string

None.

Request Formats

application/json, text/json

Sample:
{
  "jsonstring": "sample string 1"
}

application/xml, text/xml

Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models">
  <jsonstring>sample string 1</jsonstring>
</Jsonparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetAddedCurrencyList
NameDescriptionTypeAdditional information
CurrencyList

Collection of GetAddedCurrencyOut

None.

Response Formats

application/json, text/json

Sample:
{
  "CurrencyList": [
    {
      "currcode": "sample string 1",
      "currname": "sample string 2"
    },
    {
      "currcode": "sample string 1",
      "currname": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<GetAddedCurrencyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HantidhowrWebApiV1.Models">
  <CurrencyList>
    <GetAddedCurrencyOut>
      <currcode>sample string 1</currcode>
      <currname>sample string 2</currname>
    </GetAddedCurrencyOut>
    <GetAddedCurrencyOut>
      <currcode>sample string 1</currcode>
      <currname>sample string 2</currname>
    </GetAddedCurrencyOut>
  </CurrencyList>
</GetAddedCurrencyList>