POST api/FrequencyReport/SaveExtraSettings?reportId={reportId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportId | integer |
Required |
Body Parameters
ExtraSettingsForFrequency| Name | Description | Type | Additional information |
|---|---|---|---|
| LayoutMode | boolean |
None. |
|
| Rights | ReportRightType |
None. |
|
| MeanScore | boolean |
None. |
|
| Respondents | RespondentsType |
None. |
Request Formats
application/json, text/json
Sample:
{
"LayoutMode": true,
"Rights": "Private",
"MeanScore": true,
"Respondents": "RespondentsThatAnsweredQuestion"
}
text/plain
Sample:
{"LayoutMode":true,"Rights":"Private","MeanScore":true,"Respondents":"RespondentsThatAnsweredQuestion"}
application/xml, text/xml
Sample:
<ExtraSettingsForFrequency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Entities.Model"> <MeanScore>true</MeanScore> <Respondents>RespondentsThatAnsweredQuestion</Respondents> <Rights>Private</Rights> <LayoutMode>true</LayoutMode> </ExtraSettingsForFrequency>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/plain
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>