GET api/v1/Shipments/{ShipmentID}/RFQs/{RFQID}/Feedback/{id}
Retrieves the feedback identified by RFQ ID.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| RFQID |
Define this parameter in the request URI. |
|
| ShipmentID | No documentation available. |
Define this parameter in the request URI. |
| id | No documentation available. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"FeedbackID": 1,
"RFQID": 2,
"Status": "sample string 3",
"RecipientID": 4,
"Comments": "sample string 5",
"IsRead": true,
"CreatedBy": 7,
"CreatedOn": "2025-10-27T07:03:29.3137248Z"
}
application/xml, text/xml
Sample:
<RFQFeedbackDTO> <FeedbackID>1</FeedbackID> <RFQID>2</RFQID> <Status>sample string 3</Status> <RecipientID>4</RecipientID> <Comments>sample string 5</Comments> <IsRead>true</IsRead> <CreatedBy>7</CreatedBy> <CreatedOn>2025-10-27T07:03:29.3137248+00:00</CreatedOn> </RFQFeedbackDTO>