POST api/Accounting/CurrencyList
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Currency| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrencyId | integer |
None. |
|
| CurrencySymbol | string |
None. |
|
| CurrencyName | string |
None. |
|
| CurrencyRate | decimal number |
None. |
|
| Currency_Name_Latin | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CurrencyId": 1,
"CurrencySymbol": "sample string 2",
"CurrencyName": "sample string 3",
"CurrencyRate": 4.1,
"Currency_Name_Latin": "sample string 5"
},
{
"CurrencyId": 1,
"CurrencySymbol": "sample string 2",
"CurrencyName": "sample string 3",
"CurrencyRate": 4.1,
"Currency_Name_Latin": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfCurrency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layan_Cargo_API.Models">
<Currency>
<CurrencyId>1</CurrencyId>
<CurrencyName>sample string 3</CurrencyName>
<CurrencyRate>4.1</CurrencyRate>
<CurrencySymbol>sample string 2</CurrencySymbol>
<Currency_Name_Latin>sample string 5</Currency_Name_Latin>
</Currency>
<Currency>
<CurrencyId>1</CurrencyId>
<CurrencyName>sample string 3</CurrencyName>
<CurrencyRate>4.1</CurrencyRate>
<CurrencySymbol>sample string 2</CurrencySymbol>
<Currency_Name_Latin>sample string 5</Currency_Name_Latin>
</Currency>
</ArrayOfCurrency>