GET api/utils/currencies Authentication required

Use this method to fetch all the currencies available.

Request

No URI or Body Parameter required

Response

Returns all the currencies

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "code": 20, "name": "U.S. Dollar", "isoCode": "USD" }, { "code": 20, "name": "U.S. Dollar", "isoCode": "USD" } ]
  • application/xml, text/xml :
  • <ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models"> <Currency> <Code>20</Code> <IsoCode>USD</IsoCode> <Name>U.S. Dollar</Name> </Currency> <Currency> <Code>20</Code> <IsoCode>USD</IsoCode> <Name>U.S. Dollar</Name> </Currency> </ArrayOfCurrency>