GET api/Currency

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Currency
NameDescriptionTypeAdditional information
CurrencyId

integer

None.

CurrencyName

string

None.

CurrencyShortCode

string

None.

CurrencySymbol

string

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CurrencyId": 1,
    "CurrencyName": "sample string 2",
    "CurrencyShortCode": "sample string 3",
    "CurrencySymbol": "sample string 4",
    "CreatedDate": "2025-12-08T01:54:12.6738501+05:30",
    "CreatedBy": "sample string 6"
  },
  {
    "CurrencyId": 1,
    "CurrencyName": "sample string 2",
    "CurrencyShortCode": "sample string 3",
    "CurrencySymbol": "sample string 4",
    "CreatedDate": "2025-12-08T01:54:12.6738501+05:30",
    "CreatedBy": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <Currency>
    <CreatedBy>sample string 6</CreatedBy>
    <CreatedDate>2025-12-08T01:54:12.6738501+05:30</CreatedDate>
    <CurrencyId>1</CurrencyId>
    <CurrencyName>sample string 2</CurrencyName>
    <CurrencyShortCode>sample string 3</CurrencyShortCode>
    <CurrencySymbol>sample string 4</CurrencySymbol>
  </Currency>
  <Currency>
    <CreatedBy>sample string 6</CreatedBy>
    <CreatedDate>2025-12-08T01:54:12.6738501+05:30</CreatedDate>
    <CurrencyId>1</CurrencyId>
    <CurrencyName>sample string 2</CurrencyName>
    <CurrencyShortCode>sample string 3</CurrencyShortCode>
    <CurrencySymbol>sample string 4</CurrencySymbol>
  </Currency>
</ArrayOfCurrency>