POST api/Feedback/info

添加反馈

Request Information

URI Parameters

None.

Body Parameters

addFeedbackPost
NameDescriptionTypeAdditional information
content

string

None.

source

string

None.

name

string

None.

phone

string

None.

uid

账号id

integer

None.

token

token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "content": "sample string 1",
  "source": "sample string 2",
  "name": "sample string 3",
  "phone": "sample string 4",
  "uid": 5,
  "token": "sample string 6"
}

application/xml, text/xml

Sample:
<addFeedbackPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Controllers">
  <token xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">sample string 6</token>
  <uid xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">5</uid>
  <content>sample string 1</content>
  <name>sample string 3</name>
  <phone>sample string 4</phone>
  <source>sample string 2</source>
</addFeedbackPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResult
NameDescriptionTypeAdditional information
Code

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LyWebApi.Models">
  <Code>1</Code>
  <Msg>sample string 2</Msg>
</BaseResult>