GET api/HeatMap/GetDots?isLike={isLike}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| isLike | string |
Required |
Body Parameters
FilterSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| SurveyID | integer |
None. |
|
| QuestionID | integer |
None. |
|
| FilterID | integer |
None. |
|
| Range | integer |
None. |
|
| FromSecond | integer |
None. |
|
| ToSecond | integer |
None. |
|
| Persentage | integer |
None. |
|
| Type | string |
None. |
|
| dataType | string |
None. |
|
| DotFilterType | integer |
None. |
|
| ImagePath | string |
None. |
|
| FirstClick | boolean |
None. |
|
| MergedSurvey | boolean |
None. |
|
| MergedSurveyId | integer |
None. |
|
| SurveyVersion | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SurveyID": 1,
"QuestionID": 2,
"FilterID": 1,
"Range": 1,
"FromSecond": 1,
"ToSecond": 1,
"Persentage": 1,
"Type": "sample string 3",
"dataType": "sample string 4",
"DotFilterType": 1,
"ImagePath": "sample string 5",
"FirstClick": true,
"MergedSurvey": true,
"MergedSurveyId": 8,
"SurveyVersion": 9
}
text/plain
Sample:
{"SurveyID":1,"QuestionID":2,"FilterID":1,"Range":1,"FromSecond":1,"ToSecond":1,"Persentage":1,"Type":"sample string 3","dataType":"sample string 4","DotFilterType":1,"ImagePath":"sample string 5","FirstClick":true,"MergedSurvey":true,"MergedSurveyId":8,"SurveyVersion":9}
application/xml, text/xml
Sample:
<FilterSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Api.Domain.Model.DotTechnique"> <DotFilterType>1</DotFilterType> <FilterID>1</FilterID> <FirstClick>true</FirstClick> <FromSecond>1</FromSecond> <ImagePath>sample string 5</ImagePath> <MergedSurvey>true</MergedSurvey> <MergedSurveyId>8</MergedSurveyId> <Persentage>1</Persentage> <QuestionID>2</QuestionID> <Range>1</Range> <SurveyID>1</SurveyID> <SurveyVersion>9</SurveyVersion> <ToSecond>1</ToSecond> <Type>sample string 3</Type> <dataType>sample string 4</dataType> </FilterSettings>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of HeatMapPoint| Name | Description | Type | Additional information |
|---|---|---|---|
| X | decimal number |
None. |
|
| Like | boolean |
None. |
|
| Y | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"X": 1.1,
"Like": true,
"Y": 3.1
},
{
"X": 1.1,
"Like": true,
"Y": 3.1
}
]
text/plain
Sample:
[{"X":1.1,"Like":true,"Y":3.1},{"X":1.1,"Like":true,"Y":3.1}]
application/xml, text/xml
Sample:
<ArrayOfHeatMapPoint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Api.Helper.HeatMap">
<HeatMapPoint>
<Like>true</Like>
<X>1.1</X>
<Y>3.1</Y>
</HeatMapPoint>
<HeatMapPoint>
<Like>true</Like>
<X>1.1</X>
<Y>3.1</Y>
</HeatMapPoint>
</ArrayOfHeatMapPoint>