POST dz_api/DealCust/Export

导出成交客户列表信息

Request Information

URI Parameters

None.

Body Parameters

SearchDealCustConditions
NameDescriptionTypeAdditional information
Keyword

关键字

string

None.

Salesmans

业务员

Collection of integer

None.

OrderDateStart

首次成单日期起

date

None.

OrderDateEnd

首次成单日期至

date

None.

FDateStart

下次跟进时间起

date

None.

FDateEnd

下次跟进时间至

date

None.

BusinessId

服务类型

integer

None.

IncludeAll

是否包含我分管业务员的客户

boolean

None.

IsAdmin

是否是管理员或部门经理

boolean

None.

PageIndex

页码

integer

None.

PageSize

页面大小

integer

None.

NoPaged

不要分页

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "Salesmans": [
    1,
    2
  ],
  "OrderDateStart": "2024-04-28T15:11:40.3595879+08:00",
  "OrderDateEnd": "2024-04-28T15:11:40.3595879+08:00",
  "FDateStart": "2024-04-28T15:11:40.3595879+08:00",
  "FDateEnd": "2024-04-28T15:11:40.3595879+08:00",
  "BusinessId": 2,
  "IncludeAll": true,
  "IsAdmin": true,
  "PageIndex": 5,
  "PageSize": 6,
  "NoPaged": true
}

application/xml, text/xml

Sample:
<SearchDealCustConditions 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">5</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.CRM">6</PageSize>
  <BusinessId>2</BusinessId>
  <FDateEnd>2024-04-28T15:11:40.3595879+08:00</FDateEnd>
  <FDateStart>2024-04-28T15:11:40.3595879+08:00</FDateStart>
  <IncludeAll>true</IncludeAll>
  <IsAdmin>true</IsAdmin>
  <Keyword>sample string 1</Keyword>
  <OrderDateEnd>2024-04-28T15:11:40.3595879+08:00</OrderDateEnd>
  <OrderDateStart>2024-04-28T15:11:40.3595879+08:00</OrderDateStart>
  <Salesmans xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Salesmans>
</SearchDealCustConditions>

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.