GET api/SurveyStatus/GetLengthOfInterview/{id}?type={type}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| type | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LengthOfInterview| Name | Description | Type | Additional information |
|---|---|---|---|
| StepNumber | integer |
None. |
|
| From | string |
None. |
|
| To | string |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StepNumber": 1,
"From": "sample string 2",
"To": "sample string 3",
"Count": 4
},
{
"StepNumber": 1,
"From": "sample string 2",
"To": "sample string 3",
"Count": 4
}
]
text/plain
Sample:
[{"StepNumber":1,"From":"sample string 2","To":"sample string 3","Count":4},{"StepNumber":1,"From":"sample string 2","To":"sample string 3","Count":4}]
application/xml, text/xml
Sample:
<ArrayOfLengthOfInterview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Entities.Model.Survey">
<LengthOfInterview>
<Count>4</Count>
<From>sample string 2</From>
<StepNumber>1</StepNumber>
<To>sample string 3</To>
</LengthOfInterview>
<LengthOfInterview>
<Count>4</Count>
<From>sample string 2</From>
<StepNumber>1</StepNumber>
<To>sample string 3</To>
</LengthOfInterview>
</ArrayOfLengthOfInterview>