GET api/CustomerFeedbacks/{DecisionIdPath}/Breadcrumb

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DecisionIdPath

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerFeedbacks
NameDescriptionTypeAdditional information
Id

integer

None.

FeedbackTime

date

None.

Rating

integer

None.

Organization

string

String length: inclusive between 0 and 50

Experience

string

None.

WellDesignedPart

string

None.

Suggestions

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "FeedbackTime": "2021-05-05T13:01:39.8020029-04:00",
    "Rating": 3,
    "Organization": "sample string 4",
    "Experience": "sample string 5",
    "WellDesignedPart": "sample string 6",
    "Suggestions": "sample string 7"
  },
  {
    "Id": 1,
    "FeedbackTime": "2021-05-05T13:01:39.8020029-04:00",
    "Rating": 3,
    "Organization": "sample string 4",
    "Experience": "sample string 5",
    "WellDesignedPart": "sample string 6",
    "Suggestions": "sample string 7"
  }
]

text/html

Sample:
[{"Id":1,"FeedbackTime":"2021-05-05T13:01:39.8020029-04:00","Rating":3,"Organization":"sample string 4","Experience":"sample string 5","WellDesignedPart":"sample string 6","Suggestions":"sample string 7"},{"Id":1,"FeedbackTime":"2021-05-05T13:01:39.8020029-04:00","Rating":3,"Organization":"sample string 4","Experience":"sample string 5","WellDesignedPart":"sample string 6","Suggestions":"sample string 7"}]

application/xml, text/xml

Sample:
<ArrayOfCustomerFeedbacks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CPSC.ROBOT.Entities">
  <CustomerFeedbacks>
    <Experience>sample string 5</Experience>
    <FeedbackTime>2021-05-05T13:01:39.8020029-04:00</FeedbackTime>
    <Id>1</Id>
    <Organization>sample string 4</Organization>
    <Rating>3</Rating>
    <Suggestions>sample string 7</Suggestions>
    <WellDesignedPart>sample string 6</WellDesignedPart>
  </CustomerFeedbacks>
  <CustomerFeedbacks>
    <Experience>sample string 5</Experience>
    <FeedbackTime>2021-05-05T13:01:39.8020029-04:00</FeedbackTime>
    <Id>1</Id>
    <Organization>sample string 4</Organization>
    <Rating>3</Rating>
    <Suggestions>sample string 7</Suggestions>
    <WellDesignedPart>sample string 6</WellDesignedPart>
  </CustomerFeedbacks>
</ArrayOfCustomerFeedbacks>