GET api/Masters/GetSlider
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of DashboardEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| title | string |
None. |
|
| image | string |
None. |
|
| price | decimal number |
None. |
|
| high | decimal number |
None. |
|
| low | decimal number |
None. |
|
| change_value | decimal number |
None. |
|
| updated_at | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"title": "sample string 1",
"image": "sample string 2",
"price": 3.0,
"high": 4.0,
"low": 5.0,
"change_value": 6.0,
"updated_at": "sample string 7"
},
{
"title": "sample string 1",
"image": "sample string 2",
"price": 3.0,
"high": 4.0,
"low": 5.0,
"change_value": 6.0,
"updated_at": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfDashboardEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/akwiecommApi.Models">
<DashboardEntity>
<change_value>6</change_value>
<high>4</high>
<image>sample string 2</image>
<low>5</low>
<price>3</price>
<title>sample string 1</title>
<updated_at>sample string 7</updated_at>
</DashboardEntity>
<DashboardEntity>
<change_value>6</change_value>
<high>4</high>
<image>sample string 2</image>
<low>5</low>
<price>3</price>
<title>sample string 1</title>
<updated_at>sample string 7</updated_at>
</DashboardEntity>
</ArrayOfDashboardEntity>