- Duration is rather large…
{
"event": "meeting.created",
"payload": {
"account_id": "SG7cyaTzRoqSEyRnb4Djeg",
"operator": "xx",
"operator_id": "_jneLUhhQTmF09bdksDaiQ",
"object": {
"uuid": "i07xafRQT+OLz+P/XHQHEQ==",
"id": 436623359,
"host_id": "_jneLUhhQTmF09bdksDaiQ",
"topic": "Zoom Meeting",
"type": 1,
"duration": 808529459
}
}
}
What use is that number to me?
- Meeting ended event provides the start_time, not end_time
{
"event": "meeting.ended",
"payload": {
"account_id": "SG7cyaTzRoqSEyRnb4Djeg",
"object": {
"duration": 808529459,
"start_time": "2019-09-27T12:00:40Z",
"timezone": "",
"topic": "Zoom Meeting",
"id": "436623359",
"type": 1,
"uuid": "i07xafRQT+OLz+P/XHQHEQ==",
"host_id": "_jneLUhhQTmF09bdksDaiQ"
}
}
}
Again the duration is wildly inaccurate. If it was correct, I could deduce the end time. Because of these 2 bugs I must fetch the past meeting instance.
- Hooks seem to be re-sent hours later?
{
"event": "recording.resumed",
"payload": {
"account_id": "SG7cyaTzRoqSEyRnb4Djeg",
"object": {
"uuid": "ypsgTTsBRrKONekWUNjZgg==",
"id": 536849397,
"host_id": "_jneLUhhQTmF09bdksDaiQ",
"topic": "Zoom Meeting",
"type": 1,
"start_time": "2019-09-27T12:35:05Z",
This meeting ended 2h ago. Why am I getting this event just now?