- 开发指南
- 基础接口
- 客户设置
- 消息推送
- 客户&线索&待分配
- 公海
- 企微组织架构
- 企微标签库
- 企业
- 合同
- 电商平台
- 营销
- 数据统计
- 内容访客
- 电销手机
- SOP任务
- 群发消息
- 管控
- 工单
- 素材
- 应用通知
- 附录
- 群数据
- 店主活码
- 通话列表
群发任务执行详情
开发中
POST
/api/v3/customerSend/getDetail
请求参数
Header 参数
appId
string
应用 appId
默认值:
{{appId}}
timestamp
string
请求时间戳
默认值:
{{timestamp}}
sign
string
请求消息签名值
默认值:
{{sign}}
appKey
string
应用 appKey
默认值:
{{appKey}}
Body 参数application/json
id
string
任务id
pageNo
integer
必需
pageSize
integer
必需
authId
integer
默认 1
selectType
string
查询类型
客户统计: all 全部客户 unsend未发送 success 送达成功 faile 送达失败
type
integer
统计类型
示例
{
"id": "string",
"pageNo": 0,
"pageSize": 0,
"authId": 0,
"selectType": "string",
"type": 0
}
示例代码
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/v3/customerSend/getDetail' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "string",
"pageNo": 0,
"pageSize": 0,
"authId": 0,
"selectType": "string",
"type": 0
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
result
array [object {7}]
必需
pageNo
integer
必需
pageSize
integer
必需
totalCount
integer
必需
currentPage
integer
必需
示例
{
"code": 0,
"message": "success",
"data": {
"result": [
{
"sales": {
"id": "552324288850112",
"name": "冯家明",
"accountType": 2,
"deleted": 0
},
"sendStatus": 0,
"customerNum": 3,
"sendSuccessNum": 0,
"overLimitFailNum": 0,
"unfriendFailNum": 0
}
],
"pageNo": 1,
"pageSize": 200,
"totalCount": 1,
"currentPage": 1
}
}
🟢200成功