POST api/Users/AddUserFeedback

Request Information

URI Parameters

None.

Body Parameters

Feedback
NameDescriptionTypeAdditional information
feedback_ID

integer

None.

improve_app

string

None.

useful

string

None.

recommendation

string

None.

description

string

None.

email

string

None.

mobile

string

None.

read_status

string

None.

response

string

None.

Request Formats

application/json, text/json

Sample:
{
  "feedback_ID": 1,
  "improve_app": "sample string 2",
  "useful": "sample string 3",
  "recommendation": "sample string 4",
  "description": "sample string 5",
  "email": "sample string 6",
  "mobile": "sample string 7",
  "read_status": "sample string 8",
  "response": "sample string 9"
}

application/xml, text/xml

Sample:
<Feedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/asanRishta.Models">
  <description>sample string 5</description>
  <email>sample string 6</email>
  <feedback_ID>1</feedback_ID>
  <improve_app>sample string 2</improve_app>
  <mobile>sample string 7</mobile>
  <read_status>sample string 8</read_status>
  <recommendation>sample string 4</recommendation>
  <response>sample string 9</response>
  <useful>sample string 3</useful>
</Feedback>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>