GET api/RespondentsListing/GetRespondentsListing/{id}?surveyType={surveyType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| surveyType | string |
Required |
Body Parameters
None.
Response Information
Resource Description
RespondentsListingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Type | string |
None. |
|
| SurveyType | string |
Required |
|
| Users | string |
None. |
|
| ProjectID | integer |
Required |
|
| SurveyID | integer |
Required |
|
| ExcludeTestRespondents | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Type": "sample string 2",
"SurveyType": "sample string 3",
"Users": "sample string 4",
"ProjectID": 5,
"SurveyID": 6,
"ExcludeTestRespondents": true
}
text/plain
Sample:
{"ID":1,"Type":"sample string 2","SurveyType":"sample string 3","Users":"sample string 4","ProjectID":5,"SurveyID":6,"ExcludeTestRespondents":true}
application/xml, text/xml
Sample:
<RespondentsListingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Entities.Model.Survey"> <ExcludeTestRespondents>true</ExcludeTestRespondents> <ID>1</ID> <ProjectID>5</ProjectID> <SurveyID>6</SurveyID> <SurveyType>sample string 3</SurveyType> <Type>sample string 2</Type> <Users>sample string 4</Users> </RespondentsListingModel>