POST dz_api/Customer/EditFollowup

编辑跟进记录

Request Information

URI Parameters

None.

Body Parameters

FollowupRecordInfo
NameDescriptionTypeAdditional information
CustId

客户ID

integer

None.

Content

跟进内容

string

None.

FollowupId

跟进记录ID

integer

None.

CreatedBy

跟进人

integer

None.

CreatedName

跟进人员名称

string

None.

CreatedDate

创建日期

date

None.

FollowupTime

跟进时间

date

None.

StrFollowupTime

跟进时间

string

None.

CanbeEdited

是否更被编辑或者删除

boolean

None.

Attachments

跟进附件

Collection of AttachmentInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "CustId": 1,
  "Content": "sample string 2",
  "FollowupId": 3,
  "CreatedBy": 4,
  "CreatedName": "sample string 5",
  "CreatedDate": "2024-03-29T17:54:09.2183544+08:00",
  "FollowupTime": "2024-03-29T17:54:09.2183544+08:00",
  "StrFollowupTime": "2024-03-29",
  "CanbeEdited": true,
  "Attachments": [
    {
      "AaId": 1,
      "AmId": 2,
      "RefId": 3,
      "AmType": 1001,
      "FileName": "sample string 4",
      "FileSize": 5,
      "SavedName": "sample string 6",
      "SavedPath": "sample string 7",
      "FileUrl": "sample string 8"
    },
    {
      "AaId": 1,
      "AmId": 2,
      "RefId": 3,
      "AmType": 1001,
      "FileName": "sample string 4",
      "FileSize": 5,
      "SavedName": "sample string 6",
      "SavedPath": "sample string 7",
      "FileUrl": "sample string 8"
    }
  ]
}

application/xml, text/xml

Sample:
<FollowupRecordInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Customer">
  <Attachments>
    <AttachmentInfo>
      <AaId>1</AaId>
      <AmId>2</AmId>
      <AmType>Customer</AmType>
      <FileName>sample string 4</FileName>
      <FileSize>5</FileSize>
      <FileUrl>sample string 8</FileUrl>
      <RefId>3</RefId>
      <SavedName>sample string 6</SavedName>
      <SavedPath>sample string 7</SavedPath>
    </AttachmentInfo>
    <AttachmentInfo>
      <AaId>1</AaId>
      <AmId>2</AmId>
      <AmType>Customer</AmType>
      <FileName>sample string 4</FileName>
      <FileSize>5</FileSize>
      <FileUrl>sample string 8</FileUrl>
      <RefId>3</RefId>
      <SavedName>sample string 6</SavedName>
      <SavedPath>sample string 7</SavedPath>
    </AttachmentInfo>
  </Attachments>
  <CanbeEdited>true</CanbeEdited>
  <Content>sample string 2</Content>
  <CreatedBy>4</CreatedBy>
  <CreatedDate>2024-03-29T17:54:09.2183544+08:00</CreatedDate>
  <CreatedName>sample string 5</CreatedName>
  <CustId>1</CustId>
  <FollowupId>3</FollowupId>
  <FollowupTime>2024-03-29T17:54:09.2183544+08:00</FollowupTime>
</FollowupRecordInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

编辑跟进记录

MessageModel
NameDescriptionTypeAdditional information
Success

boolean

None.

Msg

string

None.

Data

Object

None.

StatusCode

StatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Msg": "sample string 2",
  "Data": {},
  "StatusCode": 100
}

application/xml, text/xml

Sample:
<MessageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model">
  <Data />
  <Msg>sample string 2</Msg>
  <StatusCode>CONTINUE</StatusCode>
  <Success>true</Success>
</MessageModel>