- 开发指南
- 基础接口
- 客户设置
- 消息推送
- 客户&线索&待分配
- 客户查询
- 客户导入
- 客户
- 客户数据
- 客户聊天
- 已跟进客户数据
- 线索&待分配
- 商机
- 个人客户转企业客户
- 企业客户联系人
- 客户旅程
- 客户操作
- 按企微员工id列出企微好友客户详情POST
- 公海
- 企微组织架构
- 企微标签库
- 企业
- 合同
- 电商平台
- 营销
- 数据统计
- 内容访客
- 电销手机
- SOP任务
- 群发消息
- 管控
- 工单
- 素材
- 应用通知
- 附录
- 群数据
- 店主活码
按新增时间查询企微客户数据
已废弃
POST
/api/v2/customer/qw-list-by-create-time
请求参数
Header 参数
appId
string
应用 appId
默认值:
{{appId}}
timestamp
string
请求时间戳
默认值:
{{timestamp}}
sign
string
请求消息签名值
默认值:
{{sign}}
appKey
string
应用 appKey
默认值:
{{appKey}}
Body 参数application/json
since
string
指定时间段开始时间(包含)
before
string
指定时间段结束时间(不包含)
pageSize
integer
结果分页大小
pageNo
integer
结果分页页码
示例
{
"since": "2020-11-08 16:38:07",
"before": "2020-11-12 16:38:07",
"pageSize": 10,
"pageNo": 1
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v2/customer/qw-list-by-create-time' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"since": "2020-11-08 16:38:07",
"before": "2020-11-12 16:38:07",
"pageSize": 10,
"pageNo": 1
}'
返回响应
🟢200成功
application/json
Body
code
integer
业务状态码。成功状态为0。参见响应业务状态码表
message
string
业务状态说明。
data
object
分页结果结构
pageSize
integer
结果分页大小
pageNo
integer
结果分页页码
totalCount
integer
结果总数
result
array [object {7}]
当前分页结果列表
totalPage
integer
结果按当前分页大小总分页数
示例
{
"code": 0,
"message": "success",
"data": {
"pageSize": 10,
"pageNo": 1,
"totalCount": 1,
"result": [
{
"qwUserId": "d41d8cd98f00b204e9800998ecf8427e",
"externalUserId": "wmPBvlDQAArKnmnaER39PcDJUezSL0Lg",
"mobiles": [
"159xxxxxxxx"
],
"wechatNickname": "文超",
"wechatAvatar": "http://wx.qlogo.cn/mmhead/ibGDRDVulibwtKffmFCfJhGGSFGOaLCQ6KJsibEAl4A3Os/0",
"fields": [
{
"id": 680,
"name": "电话",
"outerField": null,
"value": "159xxxxxxxx",
"stable": true
},
{
"id": 681,
"name": "企业",
"outerField": null,
"value": null,
"stable": true
},
{
"id": 682,
"name": "描述",
"outerField": null,
"value": "",
"stable": true
},
{
"id": 684,
"name": "销售阶段",
"outerField": null,
"value": null,
"stable": true
},
{
"id": 685,
"name": "意向",
"outerField": null,
"value": null,
"stable": true
},
{
"id": 686,
"name": "客户来源",
"outerField": null,
"value": null,
"stable": true
},
{
"id": 683,
"name": "姓名",
"outerField": null,
"value": null,
"stable": true
},
{
"id": 687,
"name": "性别 ",
"outerField": null,
"value": "男",
"stable": true
},
{
"id": 698,
"name": "职业",
"outerField": "job",
"value": null,
"stable": false
},
{
"id": 699,
"name": "年龄",
"outerField": "age",
"value": null,
"stable": false
}
]
}
],
"totalPage": 1
}
}
🟢200异常