POST dz_api/FuCust/EditFollowup

添加跟进记录

Request Information

URI Parameters

None.

Body Parameters

AddFollowupModel
NameDescriptionTypeAdditional information
FollowupId

跟进ID

integer

None.

CustId

客户ID

integer

None.

FuTime

跟进时间

date

None.

BusinessId

业务机会(业务类型)

integer

None.

Price

报价

decimal number

None.

FuMethod

跟进方式

FuMethodEnums

None.

CustLevel

客户意愿

CustLevelEnums

None.

Content

沟通内容

string

None.

NextFollowupTime

下次沟通时间

date

None.

ContactId

联系人ID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FollowupId": 1,
  "CustId": 2,
  "FuTime": "2024-04-29T01:22:39.8705045+08:00",
  "BusinessId": 4,
  "Price": 5.0,
  "FuMethod": 1010,
  "CustLevel": 1010,
  "Content": "sample string 6",
  "NextFollowupTime": "2024-04-29T01:22:39.8705045+08:00",
  "ContactId": 7
}

application/xml, text/xml

Sample:
<AddFollowupModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.CRM.Models">
  <BusinessId>4</BusinessId>
  <ContactId>7</ContactId>
  <Content>sample string 6</Content>
  <CustId>2</CustId>
  <CustLevel>A</CustLevel>
  <FollowupId>1</FollowupId>
  <FuMethod>Phone</FuMethod>
  <FuTime>2024-04-29T01:22:39.8705045+08:00</FuTime>
  <NextFollowupTime>2024-04-29T01:22:39.8705045+08:00</NextFollowupTime>
  <Price>5</Price>
</AddFollowupModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

添加跟进记录

None.