GET api/HotLink?ClsName={ClsName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClsName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of HotLinks| Name | Description | Type | Additional information |
|---|---|---|---|
| LinkId | integer |
None. |
|
| ClassName | string |
None. |
|
| LinkTitle | string |
None. |
|
| Link | string |
None. |
|
| Status | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LinkId": 1,
"ClassName": "sample string 2",
"LinkTitle": "sample string 3",
"Link": "sample string 4",
"Status": 5
},
{
"LinkId": 1,
"ClassName": "sample string 2",
"LinkTitle": "sample string 3",
"Link": "sample string 4",
"Status": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfHotLinks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnFirstWebApi.Models">
<HotLinks>
<ClassName>sample string 2</ClassName>
<Link>sample string 4</Link>
<LinkId>1</LinkId>
<LinkTitle>sample string 3</LinkTitle>
<Status>5</Status>
</HotLinks>
<HotLinks>
<ClassName>sample string 2</ClassName>
<Link>sample string 4</Link>
<LinkId>1</LinkId>
<LinkTitle>sample string 3</LinkTitle>
<Status>5</Status>
</HotLinks>
</ArrayOfHotLinks>