GET odata/Currencies
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CurrencyName | Description | Type | Additional information |
---|---|---|---|
CurrencyCode | string |
Required String length: inclusive between 0 and 50 |
|
Name | string |
Required String length: inclusive between 0 and 50 |
|
Country | string |
Required String length: inclusive between 0 and 50 |
|
ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CurrencyCode": "sample string 1", "Name": "sample string 2", "Country": "sample string 3", "ID": 4 }, { "CurrencyCode": "sample string 1", "Name": "sample string 2", "Country": "sample string 3", "ID": 4 } ]
application/xml, text/xml
Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fabric"> <Currency> <Country>sample string 3</Country> <CurrencyCode>sample string 1</CurrencyCode> <ID>4</ID> <Name>sample string 2</Name> </Currency> <Currency> <Country>sample string 3</Country> <CurrencyCode>sample string 1</CurrencyCode> <ID>4</ID> <Name>sample string 2</Name> </Currency> </ArrayOfCurrency>