User Profile
relkniw
Brass Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Re: Ms Graph API: Set "Busy - In a call" does not cause new calls to be rejected
Nivedipa-MSFT : we are using following API: var requestBody = new SetPresencePostRequestBody { SessionId = Config.CurrentValue.ApplicationClient.Id, Availability = "Busy", Activity = "InACall", ExpirationDuration = XmlConvert.ToTimeSpan(Config.CurrentValue.PresenceSettings.ExpirationDuration), }; await graphAppClient.Users[pUserPrincipalNameOrId].Presence .SetPresence .PostAsync(requestBody);105Views0likes0CommentsMs Graph API: Set "Busy - In a call" does not cause new calls to be rejected
Hi everybody, Although I set the Presence State to “Busy – InACall”, new incoming calls are not rejected. And yes, Busy on Busy (Busy Options) is activated. So if I have a real Teams call a new incoming call is rejected. Any idea why setting “Busy – InACall” via Graph API does not cause new calls to be rejected? Regards Gerd361Views1like6CommentsMS Graph API: Presence outOfOfficeSettings from beta to 1.0
Hi everybody, in the MS Graph REST API beta the 'Presence' resource type has the property "outOfOfficeSettings" since January 8, 2021. See: https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-beta https://developer.microsoft.com/en-us/graph/changelog/?search=outOfOfficeSettings When can we expect this property in the MS Graph REST API 1.0? Regards Gerd252Views0likes1CommentRe: Teams bot intercepting incoming call
Prasad_Das-MSFT What you describe works only for ended calls. But I unserstood the question that PMcVries was looking for a solution to get events for currently active calls. That is what we are also looking for. Is there any possibility to get an "ringing" event, if a MS Teams User gets an incomming call?1.6KViews0likes1CommentRe: Graph API: create a PSTN call and invite a PSTN participant
yisroelperton This is my code for the MakeCall: var call = new Call { CallbackUri = Config.CurrentValue.CallBackUrl + ConfigurationConstants.CallbackSuffixCallEvents, TenantId = Config.CurrentValue.ApplicationClient.TenantId, Source = new ParticipantInfo { Identity = new IdentitySet { // 05.11.2021 GW Handle PSTN calls AdditionalData = new Dictionary<string, object>() { {"applicationInstance", new Identity() { DisplayName = Config.CurrentValue.ApplicationClient.DisplayName, Id = Config.CurrentValue.ApplicationClient.BotUserObjectId } } } }, Region = null, LanguageId = null }, Targets = new List<InvitationParticipantInfo>() { device }, RequestedModalities = new List<Modality> { Modality.Audio }, MediaConfig = new ServiceHostedMediaConfig { }, Direction = CallDirection.Outgoing, }; var result = await graphAppClient.Communications.Calls .Request(RequestHeader) .AddResponseAsync(call);2.7KViews0likes16CommentsRe: Custom app is not loading
Prasad_Das-MSFT Can you give me further information where I have to configure that for a asp.net web application hosted on IIS? And what has changed in MS Teams 1.5.00.28361 that this failure occours? Because the application works fine in 1.5.00.21668 .2.6KViews0likes1CommentCustom app is not loading
Hi everybody, our Web-Application does work in the MS-Teams Client version 1.5.00.21668 but it does not work anymore since update the MS Teams client to version 1.5.00.28361. The application still works in the browser, but in the MS Teams custom tab we see following error within the Dev Tools console log: Any ideas what has changed in MS Teams version 1.5.00.28361? Thanks. Regards Gerd2.7KViews0likes3CommentsRe: MS Graph API: subscribe presence for a large number of user
And so I come back to my previous question: Which possibilites do we have to do a perfomant subscribtion the MS Teams presence status for a large number (>5000) of users via the MS Graph API? Because we have customer with so much user and we need their presence states.2.3KViews0likes1CommentRe: MS Graph API: subscribe presence for a large number of user
Hi Meghana, I know that and I use that functionality: But how many user can I add to "userIsString" in this case? var sub = new Microsoft.Graph.Subscription { ChangeType = "updated", NotificationUrl = Config.CurrentValue.CallBackUrl + ConfigurationConstants.CallbackSuffixPresenceNotifications, Resource = $"/communications/presences?$filter=id in {userIdsString}", //Resource = $"/communications/presences/{pUserId}", ExpirationDateTime = DateTime.UtcNow.AddMinutes(Config.CurrentValue.PresenceSettings.SubscriptionTimeout), ClientState = Config.CurrentValue.SecretClientState, }; var newSubscription = await graphUserClient .Subscriptions .Request() .AddAsync(sub); Regards Gerd2.3KViews0likes3CommentsSIP message format for "forwarded popup"
Hi everyone, I have a question regarding SIP message: If I forward all calls for me to another Teams user, the incoming call popup at the other user shows me as the original called number /user: So my question is: if I forward a call not via Teams but by a SBC or other SIP stack, how do we have to configure the sip message to show these popup? We tried the sip diversion header and history-info header with no luck. Can anybody help us please? Thanks. Regards Gerd896Views0likes1CommentRe: Firewall settings: Source IP range for Ms Graph call notifications
Sayali-MSFT We knew these document, but it's not helpful for us. We have opened all ports within these document. But we are looking for the Server IP addresses for call notifications. If we make a telephone call to our bot, we get notifications from different servers: First try the notification cames from source 40.69.26.58, then when we try again the notifications came from source 51.103.28.16. These adresses are not listed in the document. So every time we make a call to our bot, the source ip address of the notification changes. And we need a list of all possible source ip adresses.13KViews0likes2CommentsFirewall settings: Source IP range for Ms Graph call notifications
Hi everybody, we have configured a calling BOT with an Webhook (for calling) URL like https://servername:Port/graph/notifications/calls. Which source ip ranges do we have to open in the firewall settings for this notifications? We need a list of all Microsoft Cloud Servers, which sends this call notifications. Thanks for your help. Regards Gerd13KViews0likes5Comments
Recent Blog Articles
No content to show