POST api/Policy360Claim/GetAllCurrencyListData

Gets all available currency in the system

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of all currency

Collection of Currency
NameDescriptionTypeAdditional information
Code

string

None.

CurrencyName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Code": "sample string 1",
    "CurrencyName": "sample string 2"
  },
  {
    "Code": "sample string 1",
    "CurrencyName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.AS.AgentPortal.Data.Models.SubmitClaim">
  <Currency>
    <Code>sample string 1</Code>
    <CurrencyName>sample string 2</CurrencyName>
  </Currency>
  <Currency>
    <Code>sample string 1</Code>
    <CurrencyName>sample string 2</CurrencyName>
  </Currency>
</ArrayOfCurrency>