Skip to main content
Solved

Button to start an MS Teams Call

  • August 25, 2026
  • 2 replies
  • 28 views

viktor.deri
Forum|alt.badge.img+7

Hello Airtabler,

 

We use Microsoft Teams for both internal and external calls.

 

I’d like to have a button in the interface that lets me make a call via Microsoft Teams. Unfortunately, a button with “Callto:” or something similar doesn’t work. We use Chrome as our browser.

 

I’m almost afraid that this might be due to one of the company’s default configurations. Or does anyone have any ideas?

 

Best answer by TheTimeSavingCo

Hm, check this out: https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/deep-link-workflow?tabs=teamsjs-v2%2Cweb#configure-deep-link-manually-to-start-audio-video-call-with-users

For emails, the following URL type would work:

https://teams.microsoft.com/l/call/0/0?users=[EMAIL]

And so if each record had a unique email, you could create a Button field that would help you add the user’s email automatically:

 

IF(
Email,
'https://teams.microsoft.com/l/call/0/0?users=' & Email
)

The docs also mention that you can do it with phone numbers too:

https://teams.microsoft.com/l/call/0/0?users=4:[PHONE NUMBER]

users: A comma-separated list of user IDs representing the participants of the call. The user ID field supports the Microsoft Entra UserPrincipalName, typically an email address, or in a PSTN call, it supports a PSTN MRI 4:<phonenumber>.

2 replies

TheTimeSavingCo
Forum|alt.badge.img+32

Hm, check this out: https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/deep-link-workflow?tabs=teamsjs-v2%2Cweb#configure-deep-link-manually-to-start-audio-video-call-with-users

For emails, the following URL type would work:

https://teams.microsoft.com/l/call/0/0?users=[EMAIL]

And so if each record had a unique email, you could create a Button field that would help you add the user’s email automatically:

 

IF(
Email,
'https://teams.microsoft.com/l/call/0/0?users=' & Email
)

The docs also mention that you can do it with phone numbers too:

https://teams.microsoft.com/l/call/0/0?users=4:[PHONE NUMBER]

users: A comma-separated list of user IDs representing the participants of the call. The user ID field supports the Microsoft Entra UserPrincipalName, typically an email address, or in a PSTN call, it supports a PSTN MRI 4:<phonenumber>.


viktor.deri
Forum|alt.badge.img+7
  • Author
  • Known Participant
  • August 25, 2026

Thanks. That works ok for us!