feat(work): 新增获取会议发起记录接口

This commit is contained in:
Fu Diwei
2024-04-09 10:20:27 +08:00
parent 9a674f7c7f
commit fbb0e6077b
7 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<xml>
<ToUserName><![CDATA[toUser]]></ToUserName>
<FromUserName><![CDATA[fromUser]]></FromUserName>
<CreateTime>1348831860</CreateTime>
<MsgType><![CDATA[event]]></MsgType>
<Event><![CDATA[meeting_statistics]]></Event>
<ChangeType><![CDATA[start_meeting]]></ChangeType>
<Status>1</Status>
</xml>

View File

@@ -0,0 +1,7 @@
{
"type": 1,
"begin_time": 1700000000,
"end_time": 1700001000,
"limit": 1000,
"cursor": "CURSOR"
}

View File

@@ -0,0 +1,15 @@
{
"errcode": 0,
"errmsg": "ok",
"next_cursor": "abcd",
"meeting_list": [
{
"userid": "USERID1",
"start_time": 1700000000
},
{
"userid": "USERID2",
"start_time": 1700000000
}
]
}