GET api/currency

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CurrencyReponse
NameDescriptionTypeAdditional information
Name

string

None.

CharCode

string

None.

OnDate

date

None.

Value

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "charCode": "sample string 2",
  "onDate": "2024-05-20T04:24:42.8250208+00:00",
  "value": 4.1
}

application/xml, text/xml

Sample:
<CurrencyReponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CraudWezom_v1.Controllers">
  <CharCode>sample string 2</CharCode>
  <Name>sample string 1</Name>
  <OnDate>2024-05-20T04:24:42.8250208+00:00</OnDate>
  <Value>4.1</Value>
</CurrencyReponse>