POST api/v1/Shipments/{ShipmentID}/RFQs/{RFQid}/Feedback

Create a feedback of RFQ.

Request Information

Parameters

NameDescriptionAdditional information
RFQid
RFQ ID

Define this parameter in the request URI.

RFQFeedbackDTO
Feedback Object

Define this parameter in the request body.

ShipmentID
No documentation available.

Define this parameter in the request URI.

Request body formats

application/x-www-form-urlencoded

Sample:

Sample not available.

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-04-24T13:13:43.2675472Z"
}

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-04-24T13:13:43.2675472+00:00</CreatedOn>
</RFQFeedbackDTO>

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-04-24T13:13:43.2675472Z"
}

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-04-24T13:13:43.2675472+00:00</CreatedOn>
</RFQFeedbackDTO>