POST api/BootstrapItalia/Global/AddFeedback
Request Information
URI Parameters
None.
Body Parameters
AddFeedbackRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Entry | FeedbackEntryModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Entry": {
"Choice": {
"PositiveEvaluation": true,
"ChoiceCode": "sample string 2",
"ChoiceQuestion": "sample string 3",
"ChoiceAnswer": "sample string 4"
},
"Question": "sample string 1",
"Rating": 2,
"Suggestion": "sample string 3"
}
}
application/xml, text/xml
Sample:
<AddFeedbackRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pass.WebApi.Areas.Models">
<Entry>
<Choice>
<ChoiceAnswer>sample string 4</ChoiceAnswer>
<ChoiceCode>sample string 2</ChoiceCode>
<ChoiceQuestion>sample string 3</ChoiceQuestion>
<PositiveEvaluation>true</PositiveEvaluation>
</Choice>
<Question>sample string 1</Question>
<Rating>2</Rating>
<Suggestion>sample string 3</Suggestion>
</Entry>
</AddFeedbackRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.