POST api/accounts/SubmitUserFeedback

用户反馈

Request Information

Parameters

NameDescriptionAdditional information
flyUserFeedback
用户实体类

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "UserId": "sample string 2",
  "Title": "sample string 3",
  "Content": "sample string 4",
  "CreateDate": "2026-03-25T19:10:13.1555817+08:00",
  "DeviceNo": "sample string 5",
  "Type": "sample string 6",
  "Image": "sample string 7",
  "IsCheck": 1,
  "Longitude": 8.1,
  "Latitude": 9.1,
  "GpsAddress": "sample string 10",
  "UserAppId": "sample string 11"
}

application/xml, text/xml

Sample:
<App_UserFeedback xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Anda.Entity">
  <Content>sample string 4</Content>
  <CreateDate>2026-03-25T19:10:13.1555817+08:00</CreateDate>
  <DeviceNo>sample string 5</DeviceNo>
  <GpsAddress>sample string 10</GpsAddress>
  <Image>sample string 7</Image>
  <IsCheck>1</IsCheck>
  <Latitude>9.1</Latitude>
  <Longitude>8.1</Longitude>
  <Title>sample string 3</Title>
  <Type>sample string 6</Type>
  <UserAppId>sample string 11</UserAppId>
  <UserId>sample string 2</UserId>
  <id>sample string 1</id>
</App_UserFeedback>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'App_UserFeedback'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Success": true,
  "Code": "sample string 2",
  "Message": "sample string 3",
  "Data": null
}

application/xml, text/xml

Sample:
<JsonMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Anda.Utilities">
  <Code>sample string 2</Code>
  <Data i:nil="true" />
  <Message>sample string 3</Message>
  <Success>true</Success>
</JsonMessage>