POST api/RespondentsListing/Save
Request Information
URI Parameters
None.
Body Parameters
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 |
Request 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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json, text/plain
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>