{
"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"
}
]
}
curl --location --request POST 'https://openapi.weiling.cn/openapi/v2/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"
}
]
}'
{
"msg": "string",
"code": 0,
"data": {
"fail_list": [
{
"index": "string",
"error_msg": "string",
"error_code": 0
}
],
"success_list": [
{
"index": 0,
"history_id": "string"
}
]
}
}