GET api/GetSliderImgList/{ProjectId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ImageSlider| Name | Description | Type | Additional information |
|---|---|---|---|
| ImgSliderId | integer |
None. |
|
| ProjectId | integer |
None. |
|
| ImagePath | string |
None. |
|
| ImagePathVR | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ImgSliderId": 1,
"ProjectId": 2,
"ImagePath": "sample string 3",
"ImagePathVR": "sample string 4"
},
{
"ImgSliderId": 1,
"ProjectId": 2,
"ImagePath": "sample string 3",
"ImagePathVR": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfImageSlider xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RECOSMart_Api">
<ImageSlider>
<ImagePath>sample string 3</ImagePath>
<ImagePathVR>sample string 4</ImagePathVR>
<ImgSliderId>1</ImgSliderId>
<ProjectId>2</ProjectId>
</ImageSlider>
<ImageSlider>
<ImagePath>sample string 3</ImagePath>
<ImagePathVR>sample string 4</ImagePathVR>
<ImgSliderId>1</ImgSliderId>
<ProjectId>2</ProjectId>
</ImageSlider>
</ArrayOfImageSlider>