Forum Discussion

Smatek's avatar
Smatek
Copper Contributor
Jul 11, 2023

Microsoft Teams - deeplink from android app with specified date

I am trying to create a deeplink to Microsoft Teams app from my android app with already selected startDate.

Following https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/deep-link-workflow?tabs=teamsjs-v2#deep-link-to-open-a-meeting-scheduling-dialog I managed to create below snippet of code

String uri = "msteams://teams.microsoft.com/l/meeting/new?subject=testSubject&content=testContent&startTime=12%2F07%2F2023%2010%3A30%3A00";
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri parsedUri = Uri.parse(uri);
intent.setData(parsedUri);
startActivity(intent);

subject and content are successfully set in Microsoft Teams scheduling dialog, but startDate is not.

What is the required formatting for startDate parameter?

No RepliesBe the first to reply

Resources