POST api/Feedback

Post a feedback

Request Information

URI Parameters

None.

Body Parameters

Feedback
NameDescriptionTypeAdditional information
FeedbackId

integer

None.

UserId

integer

None.

Message

string

None.

Created

date

None.

Request Formats

application/json, text/json

Sample:
{
  "FeedbackId": 1,
  "UserId": 2,
  "Message": "sample string 3",
  "Created": "2026-01-09T13:13:27.250844-05:00"
}

application/xml, text/xml

Sample:
<Feedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Virtuoso.Domain">
  <Created>2026-01-09T13:13:27.250844-05:00</Created>
  <FeedbackId>1</FeedbackId>
  <Message>sample string 3</Message>
  <UserId>2</UserId>
</Feedback>

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 'Feedback'.

Response Information

Resource Description

None.