diff --git a/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx b/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
new file mode 100644
index 000000000..7d7080dbe
--- /dev/null
+++ b/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
@@ -0,0 +1,240 @@
+---
+title: "Microsoft Teams Integration"
+description: "Learn how to setup the Microsoft Teams integration"
+---
+
+import MicrosoftTeamsWorkflowIntegration from '/snippets/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx';
+
+
+This guide will provide step by step instructions on how to configure Microsoft Teams integration for your Infisical projects.
+
+## Setting up Microsoft Teams integration in your projects
+
+
+
+
+
+
+ ### Configure Azure Resources
+ To create a Microsoft Teams bot, you must first create an Azure Bot from the Azure Marketplace, an app registration, and a Microsoft Teams app. The steps below document in detail how to create and configure these resources.
+
+
+
+
+ When creating the Azure Bot resource, it's important that you set the `Type of App` to `Multi Tenant`. Additionally, you must set the `Creation Type` to `Create new Microsoft App ID`.
+
+ 
+ 
+
+ Click the "Review + create" button and complete the creation process.
+
+ Once this is completed, an Azure Bot **and** an app registration will be created. We will need to configure both to work with Microsoft Teams.
+
+
+
+ After creating the Azure Bot resource, you will be redirected to the Azure Bot resource overview page. Here we can configure the bot's settings.
+
+ **Enable Microsoft Teams Channel**
+
+ This will allow the bot to be used in Microsoft Teams.
+
+ 
+
+ 
+
+ Press the "Apply" button to enable the Microsoft Teams channel.
+
+ **Configure Messaging Endpoint**
+
+ You must configure the messaging endpoint for the Azure Bot resource. This allows events to be handled by the Infisical Microsoft Teams integration.
+
+ The endpoint must be reachable from the internet, or Infisical won't be notified of events.
+
+ Configure the endpoint to be:
+ **`https:///api/v1/workflow-integrations/microsoft-teams/message-endpoint`**.
Replace `` with the URL of your Infisical instance.
+
+ Once completed, press the "Apply" button to save your changes.
+
+ 
+
+
+ When you created the Azure Bot resource, an app registration associated with the bot was also created. We need to configure the app registration to integrate with Microsoft Teams.
+
+ You can find the app registration in the Azure Portal by navigating to the "App registrations" section, and selecting the app registration with the same name as the Azure Bot resource.
+
+ 
+ 
+
+ **Configure Redirect URIs**
+
+ Configure a redirect URI to be:
+ `https:///organization/settings/oauth/callback`. Replace `` with the URL of your Infisical instance.
+
+ 
+ 
+ 
+
+
+ **Configure API Permissions**
+
+ Next, configure the API permissions for the app registration.
+
+ Add the following permissions:
+ - `AppCatalog.Read.All`
+ - `ChannelSettings.Read.All`
+ - `MultiTenantOrganization.Read.All`
+ - `Organization.Read.All`
+ - `Team.ReadBasic.All`
+ - `TeamsAppInstallation.Read.All`
+
+
+ Please keep in mind that these permissions have to be configured as **Application** permissions, not delegated permissions.
+
+
+ Once you've added the permissions, press the **Grant admin consent for [your-organization]** button to grant the permissions.
+
+ 
+ 
+
+
+
+
+
+ Next we need to get the application client ID and create a new client secret. **Save these values for later, as they're required to configure the Microsoft Teams integration in Infisical.**
+
+
+ Copy the application client ID from the overview page.
+ 
+
+ Create a new client secret, and save the value. Keep the expiry time in mind when you're creating the secret.
+ 
+
+
+
+ Finally we're ready to create the Microsoft Teams bot itself. This step takes place on the [Microsoft Teams Developer Portal](https://dev.teams.microsoft.com/).
+
+ - Navigate to the [Microsoft Teams Developer Portal](https://dev.teams.microsoft.com/).
+ - Make sure you're logged in with the same Microsoft account as you used to create the Azure Bot resource.
+
+ 
+
+ Once you're on the Microsoft Teams Developer Portal, press the "Create a new app" button on the overview page. Give the bot a name and press the "Add" button.
+
+ **Update Manifest File**
+
+ The only change you need to make to the Microsoft Teams app you've just created, is to update the `manifest.json` file to match what's expected by Infisical.
+
+ Go to the App Package Editor page, and press the `manifest.json` file to open the file editor.
+
+ 
+
+
+ Copy the following JSON into the `manifest.json` file:
+ ```json manifest.json
+ {
+ "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.11/MicrosoftTeams.schema.json",
+ "version": "3.0.0",
+ "manifestVersion": "1.11",
+ "id": "f86bbe9c-b853-4f96-8512-7ceba7d2a620", // Keep your existing ID here, this field cannot be changed.
+ "name": {
+ "short": "Infisical",
+ "full": "Infisical Bot"
+ },
+ "developer": {
+ "name": "Infisical",
+ "websiteUrl": "https://www.infisical.com",
+ "privacyUrl": "https://www.infisical.com/privacy",
+ "termsOfUseUrl": "https://www.infisical.com/terms"
+ },
+ "description": {
+ "short": "Microsoft Teams bot for Infisical",
+ "full": "Microsoft Teams bot for Infisical. This bot will send notifications as configured in Infisical to your Microsoft Teams channels."
+ },
+ "icons": {
+ "outline": "outline.png",
+ "color": "color.png"
+ },
+ "accentColor": "#FFFFFF",
+ "bots": [
+ {
+ "botId": "01bad7fb-227b-4ac3-b5f3-41e8cdaf65d7", // Replace the botId with the Client ID of the App Registration from the previous step.
+ "scopes": [
+ "team",
+ "personal",
+ "groupchat"
+ ],
+ "isNotificationOnly": true,
+ "supportsCalling": false,
+ "supportsVideo": false,
+ "supportsFiles": false
+ }
+ ],
+ "validDomains": []
+ }
+ ```
+
+
+ Please note that it's very important that the `bots[].botId` field matches the Client ID of the App Registration from the previous step.
+
+
+ After making the changes to the manifest file, press the "Save" button to save the changes, and confirm the changes by then pressing the "Update" button.
+
+ 
+ 
+
+
+
+ Once the manifest file is updated, you can copy the Bot ID from the overview page. Save the Bot ID for later, as it's required to configure the Microsoft Teams integration in Infisical, alongside the App Registration Client ID and Client Secret that you saved earlier.
+
+ 
+
+
+
+ Once the manifest file is updated, you can download the app package by navigating to the "Publish to Store" page, and pressing the "Download app package" button.
+
+ You will need to install the app package into your desired Microsoft Teams tenant(s).
+
+ 
+
+
+
+ ### Configure Microsoft Teams Bot in Infisical
+
+ After creating the Microsoft Teams bot and its corresponding Azure resources, you are ready to configure the Microsoft Teams integration in Infisical.
+ Please note that you must be an instance admin in order to configure the Microsoft Teams instance-wide settings.
+
+
+
+ 
+ 
+
+ Enter the values you saved from the earlier steps into the respective fields.
+
+ - **Application (Client) ID**: The Client ID of the App Registration from the previous steps.
+ - **Client Secret**: The Client Secret of the App Registration from the previous steps.
+ - **Bot ID**: The App ID of the Microsoft Teams App from the previous steps.
+
+ Once completed, press the "Save" button to save your changes.
+
+
+
+
+
+
+
+
+## Troubleshooting
+
+
+ If you recently added the Microsoft Teams app to your tenant, **it may take up to 24 hours for Microsoft Teams to propagate the changes.**
+ A common indication of propagation issues is that the workflow integration is shown as "Installed", and you're able to view the teams and channels when configuring the workflow integration on your project, but no notification is being sent.
+
+
+
+ The workflow integration can get stuck on Pending if you created the workflow integration before the Infisical Microsoft Teams bot was installed in the tenant.
+ To resolve this, make sure you have installed the Infisical Microsoft Teams app in your tenant.
+
+ You can manually recheck the installation status by pressing the "Check Installation Status" button in the workflow organization settings.
+
+ 
+
\ No newline at end of file
diff --git a/docs/documentation/platform/workflow-integrations/slack-integration.mdx b/docs/documentation/platform/workflow-integrations/slack-integration.mdx
index 92b3feeca..2317baabe 100644
--- a/docs/documentation/platform/workflow-integrations/slack-integration.mdx
+++ b/docs/documentation/platform/workflow-integrations/slack-integration.mdx
@@ -1,6 +1,6 @@
---
-title: "Slack integration"
-description: "Learn how to setup Slack integration"
+title: "Slack Integration"
+description: "Learn how to setup the Slack integration"
---
This guide will provide step by step instructions on how to configure Slack integration for your Infisical projects.
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-configure.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-configure.png
new file mode 100644
index 000000000..ce362c09d
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-configure.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-overview.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-overview.png
new file mode 100644
index 000000000..d8ce56b09
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-overview.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-1.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-1.png
new file mode 100644
index 000000000..8ea72782b
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-1.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-2.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-2.png
new file mode 100644
index 000000000..b90c58029
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-2.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-3.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-3.png
new file mode 100644
index 000000000..a447dccf6
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-3.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-search.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-search.png
new file mode 100644
index 000000000..9c19b2278
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-search.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration.png
new file mode 100644
index 000000000..f49755a82
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-create.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-create.png
new file mode 100644
index 000000000..4ebb95bd7
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-create.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-marketplace.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-marketplace.png
new file mode 100644
index 000000000..e1e32c2b5
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-marketplace.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-messaging-endpoint.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-messaging-endpoint.png
new file mode 100644
index 000000000..bb72e4c33
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-messaging-endpoint.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-copy-client-id.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-copy-client-id.png
new file mode 100644
index 000000000..78c5c60e7
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-copy-client-id.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-create-client-secret.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-create-client-secret.png
new file mode 100644
index 000000000..b2df9b5f0
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-create-client-secret.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-instance-configure-microsoft-teams.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-instance-configure-microsoft-teams.png
new file mode 100644
index 000000000..9b7c938bb
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-instance-configure-microsoft-teams.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-add-microsoft-teams-integration.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-add-microsoft-teams-integration.png
new file mode 100644
index 000000000..67eb9eb0a
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-add-microsoft-teams-integration.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-microsoft-teams-integration-modal.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-microsoft-teams-integration-modal.png
new file mode 100644
index 000000000..d17ceb363
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-microsoft-teams-integration-modal.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-overview.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-overview.png
new file mode 100644
index 000000000..f9f2176c8
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-org-overview.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-save.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-save.png
new file mode 100644
index 000000000..10f80aa43
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-save.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-select.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-select.png
new file mode 100644
index 000000000..a6f8bd7c8
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-select.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-settings.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-settings.png
new file mode 100644
index 000000000..29f36ccb5
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-settings.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-server-admin-console-tab.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-server-admin-console-tab.png
new file mode 100644
index 000000000..efd1bf488
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-server-admin-console-tab.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-consent-page.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-consent-page.png
new file mode 100644
index 000000000..c15745363
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-consent-page.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-dev-portal.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-dev-portal.png
new file mode 100644
index 000000000..ba307e1b9
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-dev-portal.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-add-app.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-add-app.png
new file mode 100644
index 000000000..718ece554
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-add-app.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel-configuration.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel-configuration.png
new file mode 100644
index 000000000..65ed2dd63
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel-configuration.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel.png
new file mode 100644
index 000000000..406c092bf
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-check-installation-status.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-check-installation-status.png
new file mode 100644
index 000000000..5c71f2205
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-check-installation-status.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-copy-bot-id.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-copy-bot-id.png
new file mode 100644
index 000000000..6a0421c3d
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-copy-bot-id.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-download-package.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-download-package.png
new file mode 100644
index 000000000..f770cb55d
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-download-package.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest-confirm.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest-confirm.png
new file mode 100644
index 000000000..49edd8881
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest-confirm.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest.png
new file mode 100644
index 000000000..f3bde4975
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-update-manifest.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-update-manifest.png
new file mode 100644
index 000000000..0cf2f902f
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-update-manifest.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-install-app.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-install-app.png
new file mode 100644
index 000000000..13e036b46
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-install-app.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-submit-app.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-submit-app.png
new file mode 100644
index 000000000..6f2dd404f
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-submit-app.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-workflow-integration-created.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-workflow-integration-created.png
new file mode 100644
index 000000000..22aa8adfa
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-workflow-integration-created.png differ
diff --git a/docs/mint.json b/docs/mint.json
index 3bdad3fe0..d4ceddfeb 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -218,7 +218,8 @@
{
"group": "Workflow Integrations",
"pages": [
- "documentation/platform/workflow-integrations/slack-integration"
+ "documentation/platform/workflow-integrations/slack-integration",
+ "documentation/platform/workflow-integrations/microsoft-teams-integration"
]
},
{
diff --git a/docs/snippets/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx b/docs/snippets/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
new file mode 100644
index 000000000..a6fc1be50
--- /dev/null
+++ b/docs/snippets/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
@@ -0,0 +1,100 @@
+ ### Create Microsoft Teams workflow integration
+
+
+
+ Currently, Infisical requires you to install a custom Microsoft Teams app into your Microsoft Teams tenant.
+
+ You can download the Infisical Microsoft Teams app package here:
+ - [Infisical Microsoft Teams app package](https://infisical-microsoft-teams-app.s3.us-east-1.amazonaws.com/Infisical.zip)
+
+
+ **Important for self-hosted users:**
+
+ If you're self-hosting Infisical, you can skip the download step. Instead you should use the app package file you downloaded from the Microsoft Teams Developer Portal when you followed the Self-hosted guide.
+
+
+ Once you've downloaded the app package, you can install the app in your Microsoft Teams tenant by navigating to the **Apps** > **Upload a custom app** page, and selecting the "Upload an app" button.
+
+ 
+ 
+
+ Once the app has been submitted, your Microsoft Teams tenant admin will need to approve the app in the [Microsoft Teams Admin Center](https://admin.teams.microsoft.com/policies/manage-apps).
+
+
+ After the app has been approved, it can take a few hours _(up to 24 hours in some cases)_ for Microsoft Teams to reflect the new app. During this period, the Infisical app will not be visible in Microsoft Teams, and won't be usable.
+
+
+ Once the app has been approved, you will be able to use the Infisical Microsoft Teams integration in your projects.
+
+
+
+ Once the app has been approved and installed in your Microsoft Teams tenant, you can add the app to your Microsoft Teams teams.
+
+ 
+
+ Navigate to **Apps** > **Built for your org**, select the "Infisical" app, and press the "Add" button to select the teams and channels you wish to add the app to.
+
+
+ This can also be done later through the [Microsoft Teams Admin Center](https://admin.teams.microsoft.com/policies/manage-apps), or through the Microsoft Teams client itself by navigating to the individual team's app settings.
+
+
+ Once the app has been added to the team, you will be able to use the Infisical Microsoft Teams integration in the team.
+
+
+
+
+ After installing the Microsoft Teams app, you are now ready to configure the Microsoft Teams integration within Infisical.
+
+ Navigate to the **Workflow Integrations** tab in your organization settings, and press the "Add" button.
+
+ 
+
+
+
+ In order to use the Infisical Microsoft Teams integration, you will need to grant admin consent to the app. Once the consent is granted, the Microsoft Teams workflow integration will be created in your Infisical organization.
+
+ Press the "Add" button and select the "Microsoft Teams" platform option.
+ 
+
+ Select the Microsoft Teams integration you wish to configure, and press the "Configure" button.
+
+ Here you will be prompted to enter an alias, tenant ID, and an optional description for your workflow integration.
+ The tenant ID is the ID of the Microsoft 365 / Azure AD tenant that you installed the Infisical Microsoft Teams app in, in the previous steps.
+
+ 
+
+ Press the "Create Microsoft Teams Integration" button, and you'll be navigated to the Azure AD consent page.
+
+ 
+
+
+ Please note that you must be a privileged administrator user of your Microsoft 365 / Azure AD tenant in order to grant admin consent to the app.
+
+
+ Once you've granted admin consent, you'll be navigated back to the Infisical organization settings, where you can now select the Microsoft Teams integration you just created.
+
+ 
+
+
+
+ ### Configure project to use Microsoft Teams workflow integration
+
+
+
+
+ To add a new Microsoft Teams workflow integration, navigate to **Project Settings** > **Workflow Integrations** and press the "Add".
+ 
+
+ Select the "Microsoft Teams" option from the list of available workflow integrations.
+
+
+
+ Your project will send notifications to the connected Microsoft Teams team of the
+ selected Microsoft Teams integration when the configured events are triggered.
+
+
+ Press the "Save" button to save your Microsoft Teams workflow integration.
+ 
+
+
+ Once you've created the project Microsoft Teams workflow integration, you will now receive Access Requests and Secret Approval Requests notifications in Microsoft Teams according to your configuration.
\ No newline at end of file
diff --git a/frontend/src/pages/secret-manager/SettingsPage/components/WorkflowIntegrationSection/WorkflowIntegrationTab.tsx b/frontend/src/pages/secret-manager/SettingsPage/components/WorkflowIntegrationSection/WorkflowIntegrationTab.tsx
index 4f398e551..116429668 100644
--- a/frontend/src/pages/secret-manager/SettingsPage/components/WorkflowIntegrationSection/WorkflowIntegrationTab.tsx
+++ b/frontend/src/pages/secret-manager/SettingsPage/components/WorkflowIntegrationSection/WorkflowIntegrationTab.tsx
@@ -97,7 +97,7 @@ export const WorkflowIntegrationTab = () => {
Secret Request Notifications |
Access Request Notifications Destination |
Secret Request Notifications Destination |
- Actions |
+ |