POST api/GetCurrencyForAgent

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

AgentCurrencyList
NameDescriptionTypeAdditional information
CurrencyList

Collection of AgentCurrency

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:
<AgentCurrencyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Powerwaywebapi.Models">
  <CurrencyList>
    <AgentCurrency>
      <CurrCode>sample string 1</CurrCode>
      <CurrName>sample string 2</CurrName>
    </AgentCurrency>
    <AgentCurrency>
      <CurrCode>sample string 1</CurrCode>
      <CurrName>sample string 2</CurrName>
    </AgentCurrency>
  </CurrencyList>
</AgentCurrencyList>