POST api/Feedback/PostFeedback

Request Information

URI Parameters

None.

Body Parameters

FeedbackDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Email

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": "4efddf41-0013-4b3a-ba2f-6be9649ff3e3",
  "Email": "sample string 2",
  "SubmittedDt": "2026-03-20T11:38:53.9128645+00:00",
  "Score": 1,
  "FeedbackDetail": "sample string 4",
  "ProductsFeedbackIds": [
    "ce22e625-7764-4577-8006-18eebbb36767",
    "9d80f630-9cf1-466d-9a53-6a880e0feb3c"
  ],
  "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>4efddf41-0013-4b3a-ba2f-6be9649ff3e3</Id>
  <ProductFeedback>sample string 5</ProductFeedback>
  <ProductsFeedbackIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>ce22e625-7764-4577-8006-18eebbb36767</d2p1:guid>
    <d2p1:guid>9d80f630-9cf1-466d-9a53-6a880e0feb3c</d2p1:guid>
  </ProductsFeedbackIds>
  <Score>1</Score>
  <SubmittedDt>2026-03-20T11:38:53.9128645+00:00</SubmittedDt>
</FeedbackDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.