I have a webhook attached to the Meeting Updated event but the data that is getting sent to my endpoint doesn’t contain the Duration value. The JSON sent is below and as you can see the Duration is missing:
{
"event": "meeting.updated",
"payload": {
"account_id": "AAAAAAAAAAAAA",
"operator": "test@test.com",
"operator_id": "1234567892564",
"object": {
"id": 456456789,
"start_time": "2020-04-13T14:00:00Z"
},
"old_object": {
"id": 456456789,
"start_time": "2020-04-13T13:00:00Z"
},
"time_stamp": 1586779763997
}
}
Is this a known issue?
Thanks
Ryan