POST api/User/Feedback
Request Information
URI Parameters
None.
Body Parameters
FeedbackEntityName | Description | Type | Additional information |
---|---|---|---|
content | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "content": "sample string 1" }
application/xml, text/xml
Sample:
<FeedbackEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model"> <content>sample string 1</content> </FeedbackEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiInfoEntityOfFeedbackEntityName | Description | Type | Additional information |
---|---|---|---|
data | FeedbackEntity |
None. |
|
code | integer |
None. |
|
msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": { "content": "sample string 1" }, "code": 1, "msg": "sample string 2" }
application/xml, text/xml
Sample:
<ApiInfoEntityOfFeedbackEntityNdF_SKQEZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model"> <Code>1</Code> <Message>sample string 2</Message> <Data> <content>sample string 1</content> </Data> </ApiInfoEntityOfFeedbackEntityNdF_SKQEZ>