Meeting Updated Webhook Not Sending Duration

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

Hi @anonymind, this is expected behavior. The Meeting Updated event only sends properties which have been updated. If the duration of the meeting has not been updated, it will not be sent.

Thanks for the clarification. Is this described in the documentation for this event as I can’t seem to see it?

Hey @anonymind,

You can see in the description in the docs:

“Only properties that are updated are enclosed and returned in the object.”

Thanks,
Tommy

Ah, I thought it would be highlighted in the initial description of the event.

Thanks for clarifying.

Ryan

1 Like

You are welcome! :slight_smile:

Thanks,
Tommy