增加咨询
URL地址:api/App/Consult/InsertConsult
请求方式:POST
传递参数
None.
传递对象
ConsultEntity (咨询对象)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
Id |
编号 |
integer |
None. |
Phone |
电话号码 |
string |
None. |
电子邮件 |
string |
None. |
|
qq号 |
string |
None. |
|
WxId |
微信id |
string |
None. |
Content |
咨询内容 |
string |
None. |
ConsultTime |
咨询时间 |
date |
None. |
ReplyContent |
回复内容 |
string |
None. |
Promoter |
业务员账号 |
integer |
None. |
PromoterName |
业务员姓名 |
date |
None. |
ReplyTime |
回复时间 |
date |
None. |
ReTime |
创建时间 |
date |
None. |
application/json, text/json
Sample:
{ "Id": 1, "Phone": "sample string 2", "Email": "sample string 3", "QQ": "sample string 4", "WxId": "sample string 5", "Content": "sample string 6", "ConsultTime": "2021-03-08T16:47:51.8435038+08:00", "ReplyContent": "sample string 8", "Promoter": 9, "PromoterName": "2021-03-08T16:47:51.8435038+08:00", "ReplyTime": "2021-03-08T16:47:51.8435038+08:00", "ReTime": "2021-03-08T16:47:51.8435038+08:00" }
application/xml, text/xml
Sample:
<ConsultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <ConsultTime>2021-03-08T16:47:51.8435038+08:00</ConsultTime> <Content>sample string 6</Content> <Email>sample string 3</Email> <Id>1</Id> <Phone>sample string 2</Phone> <Promoter>9</Promoter> <PromoterName>2021-03-08T16:47:51.8435038+08:00</PromoterName> <QQ>sample string 4</QQ> <ReTime>2021-03-08T16:47:51.8435038+08:00</ReTime> <ReplyContent>sample string 8</ReplyContent> <ReplyTime>2021-03-08T16:47:51.8435038+08:00</ReplyTime> <WxId>sample string 5</WxId> </ConsultEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
返回对象
HttpResultMessageOfBoolean (bool)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
|
Msg | string |
None. |
|
message | string |
None. |
|
Result | boolean |
None. |
返回对象格式
application/json, text/json
Sample:
{ "StatusCode": 100, "Errors": { "sample string 1": "sample string 2", "sample string 3": "sample string 4" }, "Msg": "sample string 1", "message": "sample string 2", "Result": true }
application/xml, text/xml
Sample:
<HttpResultMessageOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 1</d2p1:Key> <d2p1:Value>sample string 2</d2p1:Value> </d2p1:KeyValueOfstringstring> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 3</d2p1:Key> <d2p1:Value>sample string 4</d2p1:Value> </d2p1:KeyValueOfstringstring> </Errors> <Msg>sample string 1</Msg> <Result>true</Result> <StatusCode>Continue</StatusCode> <message>sample string 2</message> </HttpResultMessageOfboolean>