GET v1/Currencies

Get a list with all available Currencies.

Request Information

Requires Authorization!

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of the Currency objects.


Collection of Currency
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

Code

Gets or sets the code.

string

Required

Max length: 10

Name

Gets or sets the name.

string

Required

Max length: 50

Symbol

Gets or sets the symbol.

string

Required

Max length: 50

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "Symbol": "sample string 4"
  },
  {
    "Id": 1,
    "Code": "sample string 2",
    "Name": "sample string 3",
    "Symbol": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrency xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Currency>
    <Id>1</Id>
    <Code>sample string 2</Code>
    <Name>sample string 3</Name>
    <Symbol>sample string 4</Symbol>
  </Currency>
  <Currency>
    <Id>1</Id>
    <Code>sample string 2</Code>
    <Name>sample string 3</Name>
    <Symbol>sample string 4</Symbol>
  </Currency>
</ArrayOfCurrency>