GET api/v1/CurrenciesMaster?search={search}&sort={sort}
Retrieves an array of currency based on the following criteria.
Request Information
Parameters
| Name | Description | Additional information | 
|---|---|---|
| search | Currency code or name. Minimum length is 3 characters. | Define this parameter in the request URI. | 
| sort | Field to sort on; prepend + or - to indicate ascending or descending (optional) | Define this parameter in the request URI. | 
Response Information
Response body formats
application/json, text/json
            Sample:
        
[
  {
    "CurrencyCode": "sample string 1",
    "CurrencyName": "sample string 2"
  },
  {
    "CurrencyCode": "sample string 1",
    "CurrencyName": "sample string 2"
  },
  {
    "CurrencyCode": "sample string 1",
    "CurrencyName": "sample string 2"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfCurrencyMasterDTO>
  <CurrencyMasterDTO>
    <CurrencyCode>sample string 1</CurrencyCode>
    <CurrencyName>sample string 2</CurrencyName>
  </CurrencyMasterDTO>
  <CurrencyMasterDTO>
    <CurrencyCode>sample string 1</CurrencyCode>
    <CurrencyName>sample string 2</CurrencyName>
  </CurrencyMasterDTO>
  <CurrencyMasterDTO>
    <CurrencyCode>sample string 1</CurrencyCode>
    <CurrencyName>sample string 2</CurrencyName>
  </CurrencyMasterDTO>
</ArrayOfCurrencyMasterDTO>