Reputation: 217
I have an idea to create some software by which users can trigger MS Team call (to any number), from any application(Eg. web browser, notepad, etc) within the system.
The challenging part for me is triggering the call from outside teams. After researching, I found:
I can make this possible by automation also, but it won't be reliable. I need to create standalone software.
So, I want to know that can I achieve this by any other method? Like, if I can just trigger the call by hitting commands from the system itself.
Upvotes: 0
Views: 1058
Reputation: 14138
Neither of those methods will work for you. There is no SDK that can be used to do what you want.
There are (as far as I can tell) two undocumented command line switches "tel:" and "callto:".
Both will cause the current running instance of teams to prompt the user to call the thing in the uri.
You use "tel:" for e164 numbers. e.g. teams e164:+0015555551234
You use "callto:" for teams users. e.g. teams callto:[email protected]
Upvotes: 1