POST api/TechFeedback/SaveProviderFeedback
Request Information
URI Parameters
None.
Body Parameters
FeedBackAnswerDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| FeedbackDate | date |
None. |
|
| Answers | Collection of AnswerDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"feedbackDate": "2025-12-12T17:25:17.0043739+05:30",
"answers": [
{
"questionId": 1,
"optionId": 1,
"answer": "sample string 2"
},
{
"questionId": 1,
"optionId": 1,
"answer": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<FeedBackAnswerDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.DTO">
<Answers>
<AnswerDTO>
<Answer>sample string 2</Answer>
<OptionId>1</OptionId>
<QuestionId>1</QuestionId>
</AnswerDTO>
<AnswerDTO>
<Answer>sample string 2</Answer>
<OptionId>1</OptionId>
<QuestionId>1</QuestionId>
</AnswerDTO>
</Answers>
<FeedbackDate>2025-12-12T17:25:17.0043739+05:30</FeedbackDate>
<UserId>sample string 1</UserId>
</FeedBackAnswerDTO>
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.