POST api/Feedback/PostRegisteredUserScreeningSummaryDetails

Request Information

URI Parameters

None.

Body Parameters

RegisteredUserScreeningSummaryPostModel
NameDescriptionTypeAdditional information
FeedbackId

integer

None.

UserId

string

None.

ScreeningSummaryInfoDetails

Collection of RegisteredUserScreeningInfoDetailsPostModel

None.

Request Formats

application/json, text/json

Sample:
{
  "FeedbackId": 1,
  "UserId": "sample string 2",
  "ScreeningSummaryInfoDetails": [
    {
      "QuestionId": 1,
      "OptionId": 2
    },
    {
      "QuestionId": 1,
      "OptionId": 2
    }
  ]
}

application/xml, text/xml

Sample:
<RegisteredUserScreeningSummaryPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operation.CustomModels">
  <FeedbackId>1</FeedbackId>
  <ScreeningSummaryInfoDetails>
    <RegisteredUserScreeningInfoDetailsPostModel>
      <OptionId>2</OptionId>
      <QuestionId>1</QuestionId>
    </RegisteredUserScreeningInfoDetailsPostModel>
    <RegisteredUserScreeningInfoDetailsPostModel>
      <OptionId>2</OptionId>
      <QuestionId>1</QuestionId>
    </RegisteredUserScreeningInfoDetailsPostModel>
  </ScreeningSummaryInfoDetails>
  <UserId>sample string 2</UserId>
</RegisteredUserScreeningSummaryPostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>