文档
测试

extract_event

POST
/mtd/major/user/extractEvent

接口描述

从一段话或者多段话中提取出日程信息

请求参数

参数名
类型
描述
必填
一个list
AnalyzeForm
AnalyzeForm
必填

说明 / 示例

+ Request ```json { "list": ["I'm Eric, leader of the Lazada Technology-Social & Content(locate in Shenzhen at Ali Center) of Lazada Group (under Alibaba Group), unintentionally find your email on GitHub. We are the largest e-commerce platform in Southeast Asia serving 6 countries with a population of 650 million. We hope that you can join us with technical enthusiasm and research ability to explore new business opportunities in Southeast Asia market together. Look forward to your reply! BTW, you could interview first and join us after Spring Festival~", "We know this has been a challenging time for many of us given the current situation and the Kick Start team wishes you well. If you have some downtime and looking for a way to stay connected, brush up on some skills, or have a little fun, #KickStart 2020 Round A starts in less than 48 hours on March 22 at 4:00 UTC."] } ``` + Response ```json { "code": 0, "msg": "success", "data": { "eventName": "interview", "ddl": "2018-01-01T00:00:00", "startTime": "2018-01-01T00:00:00", "eventContent": "xxxx去参加xxx的面试", "eventTags": [], // 是没有的 ,只是有个字段方便新加event "eventKeywords": [] // 是没有的 ,只是有个字段方便新加event } } ``` 值得注意的是这个返回的object和addEvent极为类似,目的是用户确定无误或者进行些许修改后能直接在此object基础上上传新event。