POST dz_api/Followup/Export

导出跟进记录

Request Information

URI Parameters

None.

Body Parameters

SearchFollowupConditions
NameDescriptionTypeAdditional information
Keyword

关键字

string

None.

Salesman

业务员

integer

None.

UserSns

业务员(根据权限能够被访问的业务员)

Collection of integer

None.

DateStart

跟进时间起

date

None.

DateEnd

跟进时间至

date

None.

IsAdmin

是否是管理员或部门经理

boolean

None.

PageIndex

页码

integer

None.

PageSize

页面大小

integer

None.

NoPaged

不要分页

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "Salesman": 2,
  "UserSns": [
    1,
    2
  ],
  "DateStart": "2025-04-04T02:17:32.2459661+08:00",
  "DateEnd": "2025-04-04T02:17:32.2459661+08:00",
  "IsAdmin": true,
  "PageIndex": 6,
  "PageSize": 7,
  "NoPaged": true
}

application/xml, text/xml

Sample:
<SearchFollowupConditions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM.Sales">
  <NoPaged xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">true</NoPaged>
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">6</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">7</PageSize>
  <DateEnd>2025-04-04T02:17:32.2459661+08:00</DateEnd>
  <DateStart>2025-04-04T02:17:32.2459661+08:00</DateStart>
  <IsAdmin>true</IsAdmin>
  <Keyword>sample string 1</Keyword>
  <Salesman>2</Salesman>
  <UserSns xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </UserSns>
</SearchFollowupConditions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

导出跟进记录

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.