Using Microsoft Teams with Weavy

Follow the guide below to enable the Microsoft Teams integration in Weavy.

Prerequisites

  • A Microsoft Teams subscription for your organization
  • A Weavy environment with a Pro license

Register app

First you need to register an app with the Microsoft identity platform. When registering the app select Web under the Redirect URI section and enter an url that points to /x/microsoft/auth in your Weavy environment, e.g. https://example.weavy.io/x/microsoft/auth.

Next navigate to the API permissions section and add the Microsoft Graph OnlineMeetings.ReadWrite permission.

Configure Weavy

After your app is registered you must configure Weavy with the Client ID, Client Secret and your Microsoft Entra Tenant ID. For environments hosted on weavy.io you can log in to the account portal and configure the values directly on your environment.

For self-hosted environments, add the following section to your appsettings.json file.

{  
  "Weavy": {
    "Graph": {
      "ClientId": "",
      "ClientSecret": "",
      "Tenant": "",
    }
  }
}