PUT api/surveys/questions/{question}/multiselect
Updates the multiselect settings of a given survey question with the given information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| question |
Question ID |
integer |
Required |
Body Parameters
Updated multiselect settings
SurveyQuestionMultiselectDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Question |
ID of parent Survey question |
integer |
Required |
| Min |
Minimum number of alternatives to select |
integer |
Required |
| Max |
Maximum number of alternatives to select |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Question": 1,
"Min": 2,
"Max": 1
}
Response Information
Resource Description
Updated multiselect settings
SurveyQuestionMultiselectDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Question |
ID of parent Survey question |
integer |
Required |
| Min |
Minimum number of alternatives to select |
integer |
Required |
| Max |
Maximum number of alternatives to select |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Question": 1,
"Min": 2,
"Max": 1
}