GET api/CurrencyManagement?username={username}&password={password}&platformName={platformName}
Gets all currencies
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
|
platformName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of APICurrencyName | Description | Type | Additional information |
---|---|---|---|
Name |
Textual identifier |
string |
None. |
ShortName |
Short textual identifier |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "name": "sample string 1", "shortName": "sample string 2" }, { "name": "sample string 1", "shortName": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfAPICurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <APICurrency> <Name>sample string 1</Name> <ShortName>sample string 2</ShortName> </APICurrency> <APICurrency> <Name>sample string 1</Name> <ShortName>sample string 2</ShortName> </APICurrency> </ArrayOfAPICurrency>