The Spot updated event notifies your application whenever the video link or the meeting place of a confirmed booking changes, so your systems stay in sync without polling.
Subscribing to the event
Go to Admin Panel.
Click on Webhooks.
Open an existing webhook or click on Add New Webhook.
Select Spot updated from the list of events.
Click on Save Changes.
New events arrive unselected, so existing webhooks keep their current subscriptions until you select this event.
When the event fires
You change the video link or the meeting place of a confirmed booking.
You change the host of a confirmed booking, which mints a new video link.
You regenerate the video link of a confirmed booking.
The event is sent only when the meeting place actually changes. A booking being confirmed for the first time does not trigger it. For a group booking, one event is sent for each confirmed attendee booking.
Payload
The payload is delivered as a POST request and carries both the previous and the current meeting place.
old_spot— the previous video link or meeting place.old_room_type— the previous kind of meeting place.spot— the new video link or meeting place.room_type— the new kind of meeting place.room_url— the new video link, or empty for an in-person meeting.occurred_at— the time the change happened.
The Host updated event payload now carries the current video link as well, since changing the host generates a new one.
See the article Creating webhooks to know more details.