GET api/CustomerFeedbacks

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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:06:21.7596982-08:00",
    "Answered": true,
    "AnsweredOn": "2025-12-20T17:06:21.7596982-08:00",
    "CommentStatus": true,
    "Subject": "sample string 7",
    "Reply": "sample string 8"
  },
  {
    "Id": 1,
    "Username": "sample string 2",
    "Comment": "sample string 3",
    "UpdatedOn": "2025-12-20T17:06:21.7596982-08:00",
    "Answered": true,
    "AnsweredOn": "2025-12-20T17:06:21.7596982-08:00",
    "CommentStatus": true,
    "Subject": "sample string 7",
    "Reply": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI">
  <CustomerFeedback>
    <Answered>true</Answered>
    <AnsweredOn>2025-12-20T17:06:21.7596982-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:06:21.7596982-08:00</UpdatedOn>
    <Username>sample string 2</Username>
  </CustomerFeedback>
  <CustomerFeedback>
    <Answered>true</Answered>
    <AnsweredOn>2025-12-20T17:06:21.7596982-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:06:21.7596982-08:00</UpdatedOn>
    <Username>sample string 2</Username>
  </CustomerFeedback>
</ArrayOfCustomerFeedback>