POST api/Feedback/PostFeedback
Request Information
URI Parameters
None.
Body Parameters
FeedbackDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| string |
String length: inclusive between 0 and 250 |
||
| SubmittedDt | date |
None. |
|
| Score | integer |
None. |
|
| FeedbackDetail | string |
String length: inclusive between 0 and 500 |
|
| ProductsFeedbackIds | Collection of globally unique identifier |
None. |
|
| ProductFeedback | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "95bab8ec-53de-43c7-ac65-4e7a3e337e2d",
"Email": "sample string 2",
"SubmittedDt": "2026-05-05T12:01:55.7344094+00:00",
"Score": 1,
"FeedbackDetail": "sample string 4",
"ProductsFeedbackIds": [
"d9a6f673-983f-45fb-93cd-4ab959a10e35",
"85508c8f-1933-41c0-b4a2-02d82fb5e025"
],
"ProductFeedback": "sample string 5"
}
application/xml, text/xml
Sample:
<FeedbackDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Models.RepoDtos">
<Email>sample string 2</Email>
<FeedbackDetail>sample string 4</FeedbackDetail>
<Id>95bab8ec-53de-43c7-ac65-4e7a3e337e2d</Id>
<ProductFeedback>sample string 5</ProductFeedback>
<ProductsFeedbackIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d9a6f673-983f-45fb-93cd-4ab959a10e35</d2p1:guid>
<d2p1:guid>85508c8f-1933-41c0-b4a2-02d82fb5e025</d2p1:guid>
</ProductsFeedbackIds>
<Score>1</Score>
<SubmittedDt>2026-05-05T12:01:55.7344094+00:00</SubmittedDt>
</FeedbackDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.