POST api/Feedback/PostOtherCitizenSummaryFormDetails
Request Information
URI Parameters
None.
Body Parameters
OtherCitizenScreeningSummaryInfoPostModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ScreeningId | integer |
None. |
|
| UserId | string |
None. |
|
| ScreeningSummaryInfoDetails | Collection of RegisteredUserScreeningInfoDetailsPostModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"ScreeningId": 1,
"UserId": "sample string 2",
"ScreeningSummaryInfoDetails": [
{
"QuestionId": 1,
"OptionId": 2
},
{
"QuestionId": 1,
"OptionId": 2
}
]
}
application/xml, text/xml
Sample:
<OtherCitizenScreeningSummaryInfoPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operation.CustomModels">
<ScreeningId>1</ScreeningId>
<ScreeningSummaryInfoDetails>
<RegisteredUserScreeningInfoDetailsPostModel>
<OptionId>2</OptionId>
<QuestionId>1</QuestionId>
</RegisteredUserScreeningInfoDetailsPostModel>
<RegisteredUserScreeningInfoDetailsPostModel>
<OptionId>2</OptionId>
<QuestionId>1</QuestionId>
</RegisteredUserScreeningInfoDetailsPostModel>
</ScreeningSummaryInfoDetails>
<UserId>sample string 2</UserId>
</OtherCitizenScreeningSummaryInfoPostModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>