Home > Mobile >  Start Teams call from c#
Start Teams call from c#

Time:12-17

I'm looking for a way to start a Teams call from within my own custom application. Our application has a whole bunch of phone numbers for Customers/Suppliers/... and I want to give my users the option to initiate a call just by clicking a button in the application. Does anybody have a good sample on how to do this?

I know that in the past, this was fairly easy to do with Skype and Lync. They just had an SDK you could call from your own application. But when I try to look for the same thing in Teams I always end up in documentation around bots. And it's a bit confusing if you're new to that part :-)

So main question is, how can I start a phone call with Teams from my own code? Phone calls to an actual phone number, not a Teams account.

CodePudding user response:

There's no such API available to create a call. However you can have deep link to make a call. Follow this doc to understand enter image description here

  • Related