- 对接说明
- 全局异常码
- 联系人合并接口迁移说明
- 一、获取访问凭据
- 二、通讯录管理
- 三、企微好友管理🚀🚀🚀
- 四、线索管理(即将废弃)
- 五、企业管理🚀🚀🚀
- 六、智能码
- 七、三方ID转换
- 八、跟进记录🚀🚀🚀
- 九、旅程动态🚀🚀🚀
- 十、商机🚀🚀🚀
- 十一、资料库
- 十二、标签管理🚀🚀🚀
- 十三、营销组件
- 十四、消息推送
- 十五、群相关
- 十六、自定义字段🚀🚀🚀
- 十七、外呼相关
- 十八、个微人脉管理
- 十九、联系人🚀🚀🚀
- 二十、活动管理
- 事件回调🚀🚀🚀
9.1 创建旅程(即将废弃)
POST
https://openapi.weiling.cn/openapi/event/create
请求参数
Query 参数
access_token
string
必需
Body 参数application/json
id
string
必需
type
integer
必需
event_list
object
必需
index
integer
从0开始,不可重合
title
string
标题
content
string
内容
create_time
integer
必需
create_user_id
string
创建人
示例
{
"id": "xxx",
"type": 1,
"event_list": [
{
"index": 0,
"title": "xxx",
"content": "xxx",
"create_time": 1609430400000,
"create_user_id": "xxx"
},
{
"index": 1,
"title": "xxx",
"content": "xxx",
"create_time": 1609430400000,
"create_user_id": "xxx"
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.weiling.cn/openapi/event/create?access_token' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "xxx",
"type": 1,
"event_list": [
{
"index": 0,
"title": "xxx",
"content": "xxx",
"create_time": 1609430400000,
"create_user_id": "xxx"
},
{
"index": 1,
"title": "xxx",
"content": "xxx",
"create_time": 1609430400000,
"create_user_id": "xxx"
}
]
}'
返回响应
🟢200成功
application/json
Body
msg
string
返回结果信息
code
integer
必需
data
object
必需
fail_list
array [object {3}]
失败动态列表
success_list
array [object {2}]
创建成功线索列表
示例
{
"msg": "consectetur proident anim magna labore",
"code": 0,
"data": {
"fail_list": [
{
"id": "38",
"error_msg": "tempor incididunt",
"error_code": 51,
"type": 48
},
{
"type": 87,
"error_code": 95,
"error_msg": "veniam labore",
"id": "44"
},
{
"error_code": 82,
"error_msg": "ex eiusmod",
"id": "98",
"type": 4
},
{
"error_code": 72,
"type": 9,
"id": "89",
"error_msg": "ut"
}
],
"success_list": [
{
"type": 60,
"error_code": 72,
"id": "89"
},
{
"error_code": 52,
"type": 14,
"id": "86"
},
{
"type": 24,
"error_code": 62,
"id": "46"
},
{
"type": 72,
"error_code": 38,
"id": "90"
},
{
"error_code": 81,
"type": 57,
"id": "79"
}
]
}
}
修改于 2025-01-15 05:47:44