9.1 创建旅程-新版
POST
https://openapi.weiling.cn/openapi/v2/event/create请求参数
Query 参数
access_token
string
可选
Body 参数application/json
id
string
对象id
type
integer
0-联系人 3企业
event_list
array [object {5}]
必需
index
integer
从0开始,不可重合
title
string
标题
content
string
内容
create_time
integer
必需
创建时间,13位时间戳,精确到秒
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"
}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
msg
string
必需
code
integer
必需
data
object
必需
fail_list
array [object {3}]
失败的列表
success_list
array [object {2}]
成功的列表
示例
{
"msg": "string",
"code": 0,
"data": {
"fail_list": [
{
"index": "string",
"error_msg": "string",
"error_code": 0
}
],
"success_list": [
{
"index": 0,
"history_id": "string"
}
]
}
}
最后修改时间: 13 天前