GET api/v1/CurrenciesMaster/{id}

Retrieves the currency identified by id. Where id is currency code.

Request Information

Parameters

NameDescriptionAdditional information
id

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"
}

application/xml, text/xml

Sample:
<CurrencyMasterDTO>
  <CurrencyCode>sample string 1</CurrencyCode>
  <CurrencyName>sample string 2</CurrencyName>
</CurrencyMasterDTO>