Skip to content

Commit a7a402b

Browse files
authored
Merge pull request #120576 from adamtuck-msft/adamtuck/enhanced-audio-conferencing
Enhanced PSTN Coordinates
2 parents 508c183 + 87a0dc1 commit a7a402b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

articles/communication-services/how-tos/calling-sdk/audio-conferencing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: template-how-to
1313

1414

1515
# Microsoft Teams Meeting Audio Conferencing
16-
In this article, you learn how to use Azure Communication Services Calling SDK to retrieve Microsoft Teams Meeting audio conferencing details. This functionality allows users who are already connected to a Microsoft Teams Meeting to be able to get the conference ID and dial in phone number associated with the meeting. At present, Teams audio conferencing feature returns a conference ID and only one dial-in toll or toll-free phone number depending on the priority assigned. In the future, Teams audio conferencing feature will return a collection of all toll and toll-free numbers, giving users control on what Teams meeting dial-in details to use
16+
In this article, you learn how to use Azure Communication Services Calling SDK to retrieve Microsoft Teams Meeting audio conferencing details. This functionality allows users who are already connected to a Microsoft Teams Meeting to be able to get the conference ID and dial in phone number associated with the meeting. Teams audio conferencing feature returns a collection of all toll and toll-free numbers, with concomitant country names and city names, giving users control on what Teams meeting dial-in details to use.
1717

1818
## Prerequisites
1919
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).

articles/communication-services/how-tos/calling-sdk/includes/audio-conferencing/audio-conferencing-web.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,17 @@ try {
2626
console.log(`Microsoft Teams Meeting Conference Id: ${details.phoneConferenceId}`);
2727
details.phoneNumbers.forEach(dialInPhoneNumber => {
2828
if (dialInPhoneNumber.tollPhoneNumber) {
29-
console.log(`Dial-In Toll PhoneNumber: ${dialInPhoneNumber.tollPhoneNumber.phoneNumber}`);
29+
console.log(`Dial-In Toll PhoneNumber: ${dialInPhoneNumber.tollPhoneNumber.phoneNumber}`);
3030
}
3131
else if (dialInPhoneNumber.tollFreePhoneNumber) {
3232
console.log(`Dial-In TollFree PhoneNumber: ${dialInPhoneNumber.tollFreePhoneNumber.phoneNumber}`);
3333
}
34+
else if (dialInPhoneNumber.countryName) {
35+
console.log(`Dial-In Country Name: ${dialInPhoneNumber.countryName}`);
36+
}
37+
else if (dialInPhoneNumber.cityName) {
38+
console.log(`Dial-In City Name: ${dialInPhoneNumber.cityName}`);
39+
}
3440
})
3541
} catch (e) {
3642
console.error(e);

0 commit comments

Comments
 (0)