GET Park/Definition/Currency/List
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CurrencyList| Name | Description | Type | Additional information |
|---|---|---|---|
| status | RCResponse |
None. |
|
| currencyTypes | Collection of Currency |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": {
"rc": 1,
"response": "sample string 2",
"success": true
},
"currencyTypes": [
{
"currencyID": 1,
"currencyName": "sample string 2"
},
{
"currencyID": 1,
"currencyName": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<CurrencyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParkingAPI.Models.ReturnModels">
<currencyTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/ParkingAPI.Models">
<d2p1:Currency>
<d2p1:currencyID>1</d2p1:currencyID>
<d2p1:currencyName>sample string 2</d2p1:currencyName>
</d2p1:Currency>
<d2p1:Currency>
<d2p1:currencyID>1</d2p1:currencyID>
<d2p1:currencyName>sample string 2</d2p1:currencyName>
</d2p1:Currency>
</currencyTypes>
<status xmlns:d2p1="http://schemas.datacontract.org/2004/07/ParkingAPI.Models">
<d2p1:rc>1</d2p1:rc>
<d2p1:response>sample string 2</d2p1:response>
<d2p1:success>true</d2p1:success>
</status>
</CurrencyList>