POST api/feedback/Add?accessToken={accessToken}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accessToken

string

Required

Body Parameters

FeedbackModel
NameDescriptionTypeAdditional information
UserId

string

None.

UserName

string

None.

AreaId

integer

None.

Title

string

None.

Content

string

None.

ContentImg

string

None.

botId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "UserName": "sample string 2",
  "AreaId": 3,
  "Title": "sample string 4",
  "Content": "sample string 5",
  "ContentImg": "sample string 6",
  "botId": "sample string 7"
}

application/xml, text/xml

Sample:
<FeedbackModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YuXun.WebAPI.Models">
  <AreaId>3</AreaId>
  <Content>sample string 5</Content>
  <ContentImg>sample string 6</ContentImg>
  <Title>sample string 4</Title>
  <UserId>sample string 1</UserId>
  <UserName>sample string 2</UserName>
  <botId>sample string 7</botId>
</FeedbackModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.