Speed dial for Teams Meetings

If you use different macros for speedDials (like Pexip OTJ-Cloud) on the same Endpoint, please check NOT to use the same WidgetId prefix.

If different Macros listen for the same event then more than one call will be placed at the same tim. You can change these two lines in above macro to avoid the clash:

From: <WidgetId >sd_${number}</WidgetId >
To: <WidgetId >td_${number}</WidgetId >

From: if (event.WidgetId.slice(0, 3) === ‘sd_’) {
To: if (event.WidgetId.slice(0, 3) === ‘td_’) {

2 Likes