POST api/CRM/UpdateFollowUp
修改跟进
Request Information
URI Parameters
None.
Body Parameters
FollowUpRecordDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id。自动生成。主键id |
integer |
None. |
| CustomerId |
客户ID |
integer |
None. |
| CustomerName |
客户姓名 |
string |
None. |
| EmployeeId |
跟进入ID |
integer |
None. |
| EmployeeName |
跟进人 |
string |
None. |
| FtypeId |
客户跟进类型ID |
integer |
None. |
| FtypeName |
客户跟进类型 |
string |
None. |
| FResult |
客户跟进记录 |
string |
None. |
| FSite |
签到地址 |
string |
None. |
| FollowDate |
FollowDate |
date |
None. |
| File |
文件 |
Collection of AttachmentInfo |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 1,
"CustomerName": "sample string 2",
"EmployeeId": 1,
"EmployeeName": "sample string 3",
"FtypeId": 1,
"FtypeName": "sample string 4",
"FResult": "sample string 5",
"FSite": "sample string 6",
"FollowDate": "2026-03-31 21:49:35",
"File": [
{
"Id": 1,
"BusinessCode": "sample string 2",
"AttachName": "sample string 3",
"AttachUrl": "sample string 4"
},
{
"Id": 1,
"BusinessCode": "sample string 2",
"AttachName": "sample string 3",
"AttachUrl": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<FollowUpRecordDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.Domain.Dto">
<CustomerId>1</CustomerId>
<CustomerName>sample string 2</CustomerName>
<EmployeeId>1</EmployeeId>
<EmployeeName>sample string 3</EmployeeName>
<FResult>sample string 5</FResult>
<FSite>sample string 6</FSite>
<File>
<AttachmentInfo>
<AttachName>sample string 3</AttachName>
<AttachUrl>sample string 4</AttachUrl>
<BusinessCode>sample string 2</BusinessCode>
<Id>1</Id>
</AttachmentInfo>
<AttachmentInfo>
<AttachName>sample string 3</AttachName>
<AttachUrl>sample string 4</AttachUrl>
<BusinessCode>sample string 2</BusinessCode>
<Id>1</Id>
</AttachmentInfo>
</File>
<FollowDate>2026-03-31T21:49:35.5573666+08:00</FollowDate>
<FtypeId>1</FtypeId>
<FtypeName>sample string 4</FtypeName>
<Id>1</Id>
</FollowUpRecordDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
InfoResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| IsSuccess |
是否成功:true:成功,false:失败 |
boolean |
None. |
| Msg |
返回消息 |
string |
None. |
| Extra |
特定信息 |
string |
None. |
| Code |
内部代码:[成功 000000|失败 000001|未登陆/未授权 000002] |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"IsSuccess": true,
"Msg": "sample string 3",
"Extra": "sample string 4",
"Code": "sample string 5"
}
application/xml, text/xml
Sample:
<InfoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.Core.ShareData"> <Code>sample string 5</Code> <Extra>sample string 4</Extra> <IsSuccess>true</IsSuccess> <Msg>sample string 3</Msg> <Data /> </InfoResult>