POST api/Customers/Feedback

Request Information

URI Parameters

None.

Body Parameters

SaveFeedbackPostModel
NameDescriptionTypeAdditional information
FeedBackType

string

None.

FirstName

string

None.

LastName

string

None.

PhoneNumber

string

None.

EmailAddress

string

None.

FeedBack

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FeedBackType": "sample string 1",
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "PhoneNumber": "sample string 4",
  "EmailAddress": "sample string 5",
  "FeedBack": "sample string 6"
}

application/xml, text/xml

Sample:
<SaveFeedbackPostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Models.Customer">
  <EmailAddress>sample string 5</EmailAddress>
  <FeedBack>sample string 6</FeedBack>
  <FeedBackType>sample string 1</FeedBackType>
  <FirstName>sample string 2</FirstName>
  <LastName>sample string 3</LastName>
  <PhoneNumber>sample string 4</PhoneNumber>
</SaveFeedbackPostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.