8.2 跟进记录创建-新版
POST
https://openapi.weiling.cn/openapi/v2/progress/create请求参数
Query 参数
access_token
string
可选
Body 参数application/json
id
string
对象id
type
integer
必需
0联系人 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": "oQpNNdxLS-Kl-HaH7jWiKsTUGcGdeamDyUu459Be9DI",
"type": 3,
"progress_list": [
{
"index": 0,
"content": "企业跟进测试+101",
"create_time": 1710918235000,
"create_user_id": "JxDQj-kOP4gm4PH_Xh4yfUlDx4VXHIWwlGospaHp4PM",
"image_file_list": [
"https://wlmvp-cos.weiling.cn/1668847998500_icon.png"
],
"attachment_file_list": [
{
"name": "123.docx",
"type": 0,
"size": "22343",
"url": "https://demo-cos.weiling.cn/1356898121111711744/1709622279.docx"
}
]
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
msg
string
必需
code
integer
必需
返回结果码值-0:请求成功 500 系统错误 1001参数错误
data
object
必需
fail_list
array [object {3}]
失败跟进记录列表
success_list
array [object {2}]
可选
创建成功跟进记录列表
示例
{
"msg": "string",
"code": 0,
"data": {
"fail_list": [
{
"index": 0,
"error_code": 0,
"error_msg": "string"
}
],
"success_list": [
{
"index": 0,
"progress_id": "string"
}
]
}
}
最后修改时间: 5 天前