GET Finans/Kasalar?FirmaID={FirmaID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FirmaID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SelectListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| Text | string |
None. |
|
| Value | string |
None. |
|
| Selected | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Text": "sample string 1",
"Value": "sample string 2",
"Selected": true
},
{
"Text": "sample string 1",
"Value": "sample string 2",
"Selected": true
}
]
application/xml, text/xml
Sample:
<ArrayOfSelectListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/System.Web.WebPages.Html">
<SelectListItem>
<Selected>true</Selected>
<Text>sample string 1</Text>
<Value>sample string 2</Value>
</SelectListItem>
<SelectListItem>
<Selected>true</Selected>
<Text>sample string 1</Text>
<Value>sample string 2</Value>
</SelectListItem>
</ArrayOfSelectListItem>