POST api/CustomerFeedback/CreateCustomerFeedback

Request Information

URI Parameters

None.

Body Parameters

CustomerFeedbackModel
NameDescriptionTypeAdditional information
CustomerFeedbackId

integer

None.

CustomerId

integer

None.

CustomerName

string

None.

RepresentativeName

string

None.

Email

string

None.

CompanyName

string

None.

FeedbackJSON

string

None.

SubmittedOn

date

None.

PIDetailsId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerFeedbackId": 1,
  "CustomerId": 1,
  "CustomerName": "sample string 2",
  "RepresentativeName": "sample string 3",
  "Email": "sample string 4",
  "CompanyName": "sample string 5",
  "FeedbackJSON": "sample string 6",
  "SubmittedOn": "2026-06-04T12:37:14.3850327+05:30",
  "PIDetailsId": 1
}

application/xml, text/xml

Sample:
<CustomerFeedbackModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/labman_api.Models">
  <CompanyName>sample string 5</CompanyName>
  <CustomerFeedbackId>1</CustomerFeedbackId>
  <CustomerId>1</CustomerId>
  <CustomerName>sample string 2</CustomerName>
  <Email>sample string 4</Email>
  <FeedbackJSON>sample string 6</FeedbackJSON>
  <PIDetailsId>1</PIDetailsId>
  <RepresentativeName>sample string 3</RepresentativeName>
  <SubmittedOn>2026-06-04T12:37:14.3850327+05:30</SubmittedOn>
</CustomerFeedbackModel>

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.