POST api/TechFeedback/SaveProviderFeedback

Request Information

URI Parameters

None.

Body Parameters

FeedBackAnswerDTO
NameDescriptionTypeAdditional information
UserId

string

None.

FeedbackDate

date

None.

Answers

Collection of AnswerDTO

None.

Request Formats

application/json, text/json

Sample:
{
  "userId": "sample string 1",
  "feedbackDate": "2026-08-05T03:19:41.5513154+05:30",
  "answers": [
    {
      "questionId": 1,
      "optionId": 1,
      "answer": "sample string 2"
    },
    {
      "questionId": 1,
      "optionId": 1,
      "answer": "sample string 2"
    }
  ]
}

application/csp-report

Sample:
{"userId":"sample string 1","feedbackDate":"2026-08-05T03:19:41.5513154+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>2026-08-05T03:19:41.5513154+05:30</FeedbackDate>
  <UserId>sample string 1</UserId>
</FeedBackAnswerDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FeedBackAnswerDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/csp-report, application/xml, text/xml

Sample:

Sample not available.