- 开发指南
- 基础接口
- 客户设置
- 消息推送
- 客户&线索&待分配
- 客户查询
- 客户导入
- 客户
- 线索&待 分配
- 商机
- 个人客户转企业客户
- 企业客户联系人
- 客户旅程
- 客户操作
- 按企微员工id列出企微好友客户详情POST
- 公海
- 企微组织架构
- 企微标签库
- 企业
- 合同
- 电商平台
- 营销
- 数据统计
- 内容访客
- 电销手机
- SOP任务
- 群发消息
- 管控
- 工单
- 素材
- 应用通知
- 附录
- 群数据
- 店主活码
获取线索&待分配客户详情
POST
/api/v3/clue/get
请求参数
Header 参数
appId
string
应用 appId
默认值:
{{appId}}
timestamp
string
请求时间戳
默认值:
{{timestamp}}
sign
string
请求消息签名值
默认值:
{{sign}}
appKey
string
应用 appKey
默认值:
{{appKey}}
Body 参数application/json
customerId
integer
线索&待分配客户id
示例
{
"customerId": 8
}
示例代码
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/clue/get' \
--header 'appId;' \
--header 'timestamp;' \
--header 'sign;' \
--header 'appKey: {{appKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerId": 8
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
message
string
结果说明
data
object
线索&待分配客户信息
customerId
integer
线索&待分配客户id
isClue
boolean
是否线索
type
integer
类型
convertCustomerTime
string
转客户时间
fields
array [object {3}]
线索&待分配客户字段列表
tagIds
array[string]
线索&待分配客户企业标签id列表
createTime
string
线索&待分配客户创建时间
lastUpdateTime
string
线索&待分配客户字段最近更新时间
companyInfo
object
公司信息
示例
{
"code": 0,
"message": "ok",
"data": {
"customerId": 410983932389440,
"isClue": false,
"type": 1,
"fields": [
{
"field": "customer_source",
"type": 2,
"valueAsText": null
},
{
"field": "description",
"type": 1,
"valueAsText": "u 诶IE"
},
{
"field": "mobile",
"type": 8,
"valueAsText": "[\"145678388\"]"
},
{
"field": "address",
"type": 1,
"valueAsText": null
},
{
"field": "birthday",
"type": 3,
"valueAsText": null
},
{
"field": "corp_name",
"type": 1,
"valueAsText": null
},
{
"field": "name",
"type": 1,
"valueAsText": "打马赛克就"
},
{
"field": "purchase_intention",
"type": 2,
"valueAsText": null
},
{
"field": "gender",
"type": 2,
"valueAsText": null
},
{
"field": "customer_stage",
"type": 2,
"valueAsText": "396823724189760"
}
],
"tagIds": [],
"createTime": "2021-05-11 15:15:48",
"lastUpdateTime": "2021-05-11 15:15:48"
}
}
🟢200异常
修改于 2022-02-15 02:46:47