DELETE api/CustomerFeedbacks/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CustomerFeedback
NameDescriptionTypeAdditional information
Id

integer

None.

Username

string

None.

Comment

string

None.

UpdatedOn

date

None.

Answered

boolean

None.

AnsweredOn

date

None.

CommentStatus

boolean

None.

Subject

string

None.

Reply

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Username": "sample string 2",
  "Comment": "sample string 3",
  "UpdatedOn": "2025-12-20T17:10:22.8297568-08:00",
  "Answered": true,
  "AnsweredOn": "2025-12-20T17:10:22.8297568-08:00",
  "CommentStatus": true,
  "Subject": "sample string 7",
  "Reply": "sample string 8"
}

application/xml, text/xml

Sample:
<CustomerFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI">
  <Answered>true</Answered>
  <AnsweredOn>2025-12-20T17:10:22.8297568-08:00</AnsweredOn>
  <Comment>sample string 3</Comment>
  <CommentStatus>true</CommentStatus>
  <Id>1</Id>
  <Reply>sample string 8</Reply>
  <Subject>sample string 7</Subject>
  <UpdatedOn>2025-12-20T17:10:22.8297568-08:00</UpdatedOn>
  <Username>sample string 2</Username>
</CustomerFeedback>