GET api/Valutas/GetValutasInUse
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Valuta| Name | Description | Type | Additional information |
|---|---|---|---|
| ValutaId | integer |
None. |
|
| ValutaIsocode | string |
Required String length: inclusive between 0 and 3 |
|
| ValutaName | string |
Required String length: inclusive between 0 and 50 |
|
| IsInUse | boolean |
None. |
|
| ObjectState | ObjectState |
None. |
Response Formats
application/json, text/json
Sample:
{
"valutaId": 1,
"valutaIsocode": "sample string 2",
"valutaName": "sample string 3",
"isInUse": true,
"objectState": 0
}
application/xml, text/xml
Sample:
<Valuta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Models"> <ObjectState xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Repository">Unchanged</ObjectState> <IsInUse>true</IsInUse> <ValutaId>1</ValutaId> <ValutaIsocode>sample string 2</ValutaIsocode> <ValutaName>sample string 3</ValutaName> </Valuta>