8.1 跟进记录创建
POST
https://openapi.weiling.cn/openapi/progress/create请求参数
Query 参数
access_token
string
必需
获取到的凭证,最长为512字节
Body 参数application/json
id
string
对象id
type
integer
必需
0手机号线索 1企微好友 3企业 4访客 6 群 7商机
progress_list
array [object {6}]
必需
跟进记录列表(列表长度<=100)
index
integer
必需
从0顺序编号,仅用于标识后续是否成功,建议不要重复。
content
string
必需
跟进记录内容(长度<=1000)
create_time
integer
必需
创建时间,13位时间戳,精确到秒
create_user_id
string
创建人id
image_file_list
array[string]
可选
图片链接(图片数量不能超过九个)
attachment_file_list
array [object {4}]
可选
附件列表(附件数量不能超过三个)
示例
{
"id": "78",
"type": 75,
"progress_list": [
{
"index": 85,
"content": "nulla ut anim in",
"create_time": 728050934407,
"create_user_id": "17"
},
{
"index": 35,
"content": "in ut occaecat sed",
"create_time": 147025511886,
"create_user_id": "59"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
msg
string
返回结果信息
code
integer
必需
返回结果码值-0:请求成功 500 系统错误 1001参数错误
data
object
必需
failList
array [object {3}]
失败跟进记录列表
successList
array [object {2}]
必需
创建成功跟进记录列表
示例
{
"msg": "success",
"code": 0,
"data": {
"fail_list": [
{
"error_code": 1001,
"error_msg": "userId不正确",
"index": 0
},
{
"error_code": 1001,
"error_msg": "userId不正确",
"index": 2
},
{
"error_code": 1001,
"error_msg": "userId不正确",
"index": 4
}
],
"success_list": [
{
"index": 1,
"progress_id": "1516315715538255872"
},
{
"index": 3,
"progress_id": "1516315716440031232"
},
{
"index": 5,
"progress_id": "1516315716444225536"
},
{
"index": 6,
"progress_id": "1516315716444225537"
},
{
"index": 7,
"progress_id": "1516315716448419840"
},
{
"index": 8,
"progress_id": "1516315716452614144"
},
{
"index": 9,
"progress_id": "1516315716456808448"
}
]
}
}
最后修改时间: 6 个月前