GET api/Expenses/Currency
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CurrencyIdCodeDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CurrencyId | integer |
None. |
|
| CurrencyCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CurrencyId": 1,
"CurrencyCode": "sample string 2"
},
{
"CurrencyId": 1,
"CurrencyCode": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCurrencyIdCodeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Captio.Api.Dto">
<CurrencyIdCodeDTO>
<CurrencyCode>sample string 2</CurrencyCode>
<CurrencyId>1</CurrencyId>
</CurrencyIdCodeDTO>
<CurrencyIdCodeDTO>
<CurrencyCode>sample string 2</CurrencyCode>
<CurrencyId>1</CurrencyId>
</CurrencyIdCodeDTO>
</ArrayOfCurrencyIdCodeDTO>