POST api/Feedback/SaveFeedback

Request Information

URI Parameters

None.

Body Parameters

Feedback
NameDescriptionTypeAdditional information
SecurityKey

string

None.

FeedbackId

integer

None.

UserId

integer

None.

UserName

string

None.

UserFeedback

string

None.

Reply

string

None.

GivenBy

string

None.

ContactNo

string

None.

CreateDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "SecurityKey": "sample string 1",
  "FeedbackId": 2,
  "UserId": 3,
  "UserName": "sample string 4",
  "UserFeedback": "sample string 5",
  "Reply": "sample string 6",
  "GivenBy": "sample string 7",
  "ContactNo": "sample string 8",
  "CreateDate": "2025-12-11T10:28:27.5402568-08:00"
}

text/html

Sample:
{"SecurityKey":"sample string 1","FeedbackId":2,"UserId":3,"UserName":"sample string 4","UserFeedback":"sample string 5","Reply":"sample string 6","GivenBy":"sample string 7","ContactNo":"sample string 8","CreateDate":"2025-12-11T10:28:27.5402568-08:00"}

application/xml, text/xml

Sample:
<Feedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
  <ContactNo>sample string 8</ContactNo>
  <CreateDate>2025-12-11T10:28:27.5402568-08:00</CreateDate>
  <FeedbackId>2</FeedbackId>
  <GivenBy>sample string 7</GivenBy>
  <Reply>sample string 6</Reply>
  <SecurityKey>sample string 1</SecurityKey>
  <UserFeedback>sample string 5</UserFeedback>
  <UserId>3</UserId>
  <UserName>sample string 4</UserName>
</Feedback>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json, text/html

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>