POST api/FrequencyReport/CheckQuestionsDuplicate

Request Information

URI Parameters

None.

Body Parameters

CopySettingsModel
NameDescriptionTypeAdditional information
ReportID

integer

None.

NewSurveyID

integer

None.

OldSurveyID

integer

None.

NewSurveyVersion

integer

None.

OldSurveyVersion

integer

None.

MergedSurveyID

integer

None.

Name

string

None.

LoginType

string

None.

Significance

string

None.

CopyAnswerSettings

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ReportID": 1,
  "NewSurveyID": 2,
  "OldSurveyID": 3,
  "NewSurveyVersion": 4,
  "OldSurveyVersion": 5,
  "MergedSurveyID": 1,
  "Name": "sample string 6",
  "LoginType": "sample string 7",
  "Significance": "sample string 8",
  "CopyAnswerSettings": true
}

text/plain

Sample:
{"ReportID":1,"NewSurveyID":2,"OldSurveyID":3,"NewSurveyVersion":4,"OldSurveyVersion":5,"MergedSurveyID":1,"Name":"sample string 6","LoginType":"sample string 7","Significance":"sample string 8","CopyAnswerSettings":true}

application/xml, text/xml

Sample:
<CopySettingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rtr.Entities.Model">
  <CopyAnswerSettings>true</CopyAnswerSettings>
  <LoginType>sample string 7</LoginType>
  <MergedSurveyID>1</MergedSurveyID>
  <Name>sample string 6</Name>
  <NewSurveyID>2</NewSurveyID>
  <NewSurveyVersion>4</NewSurveyVersion>
  <OldSurveyID>3</OldSurveyID>
  <OldSurveyVersion>5</OldSurveyVersion>
  <ReportID>1</ReportID>
  <Significance>sample string 8</Significance>
</CopySettingsModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response 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>