diff --git a/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx b/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
index e0d5c3fbc..432197201 100644
--- a/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
+++ b/docs/documentation/platform/workflow-integrations/microsoft-teams-integration.mdx
@@ -19,192 +19,136 @@ This guide will provide step by step instructions on how to configure Microsoft
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.
-
- 
- 
+
+ Navigate to the [Microsoft Teams Developer Portal](https://dev.teams.microsoft.com/).
+ 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.
+ 
-
- 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.**
+
+ After creating the Microsoft Teams app, you'll need to create a Microsoft Teams bot.
+
+ Navigate to the app's bot settings page and click "Create a new bot".
+
+ 
+ 
+
+ After clicking the "Create a new bot" button, you'll be navigated to the Teams Developer Portal for bot management. Press the "New bot" button, and enter the name of the bot.
+ Please keep in mind that the name of the bot can only contain alphanumeric characters, dashes, and underscores.
+
+ 
+
+
+
+ After creating the bot, you'll need to add a message endpoint to the bot. Navigate to the "Configure" tab, and input the following endpoint under "Endpoint address":
+ `https:///api/v1/workflow-integrations/microsoft-teams/message-endpoint`
+ Replace `` with the URL of your Infisical instance.
+
+ Press the "Save" button to save the changes.
+
+ 
+
+
+
+ When you create a bot through the Teams Developer Portal, an Azure App Registration is also created.
+
+ Open your [Azure Portal](https://portal.azure.com/) and navigate to the "App Registrations" section to find the newly created app registration.
+ The name of the app registration will be the same as the name of the bot you created in the previous step.
- Copy the application client ID from the overview page.
- 
+ Press the app registration to open the app registration overview page.
+ 
+
- Create a new client secret, and save the value. Keep the expiry time in mind when you're creating the secret.
- 
+
+ Navigate to the "API Permissions" section of the app registration, and add the following permissions:
+ - `AppCatalog.Read.All`
+ - `ChannelSettings.Read.All`
+ - `MultiTenantOrganization.Read.All`
+ - `Organization.Read.All`
+ - `Team.ReadBasic.All`
+ - `TeamsAppInstallation.Read.All`
+
+ After adding the API permissions, press the "Grant admin consent" button to grant the permissions.
+
+ 
+
+
+
+ Navigate to the "Authentication" section of the App Registration, and press the "Add a platform" button. Select the "Web" platform and enter the following redirect URI:
+ `https:///organization/settings/oauth/callback`. Replace `` with the URL of your Infisical instance.
+
+ 
+
+
+
+ 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.**
+
+ **Get the Application (Client) ID**
+
+ To get the Application (Client) ID, press the "Copy" button next to the "Application (client) ID" field.
+
+ 
+
+ **Create a new client secret**
+
+ Create a new client secret within the app registration. Navigate to the "Certificates & Secrets" section of the app registration, and press the "New client secret" button.
+
+ 
Remember to rotate your client secret before it expires. Consider setting up a reminder or automated process to replace the secret and update your Infisical configuration before expiration.
-
- 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 back to the [Microsoft Teams Developer Portal](https://dev.teams.microsoft.com/), and press the "Apps" tab and select the app you created earlier.
+ Here you can find the Microsoft Teams App ID in the overview page, which you need to copy and save for later.
- - 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": "",
- "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": "
- 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.
+
+ You need to link the Microsoft Teams App with the bot/app registration you created earlier.
+ Inside the [Microsoft Teams Developer Portal](https://dev.teams.microsoft.com/), navigate to the "Bot" tab and select the bot you created earlier. Navigate to the "App Features" section, and press the "Bot" button.
- 
+ Under the "What can your bot do?" section, enable `Only send notifications (one-way conversations)`.
+
+ Under the "Select the scopes where people can use your bot" section, select `Personal`, `Team`, and `Group Chat`.
+
+ Finally, press the "Save" button to save the changes.
+
+ 
+ 
+
+
+
+ To ensure that the Microsoft Teams App is working correctly, you can run an app validation test.
+
+ You should expect to see two errors related to sending welcome messages, because we haven't configured the Microsoft Teams App inside Infisical yet, which is required for proactive messages.
+
+ 
+ 
+
+
+ If you see two errors for bot welcome messages, you can ignore them. This is expected until you configure the Microsoft Teams App inside Infisical.
+
- 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.
+ Once the Microsoft Teams App is working correctly, 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.
+ After creating the Microsoft Teams App and Bot, 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.
@@ -216,13 +160,12 @@ This guide will provide step by step instructions on how to configure Microsoft
- **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.
+ - **Microsoft Teams App ID**: The App ID of the Microsoft Teams App from the previous steps.
Once completed, press the "Save" button to save your changes.
-
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
deleted file mode 100644
index ce362c09d..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-configure.png and /dev/null 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
deleted file mode 100644
index d8ce56b09..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-api-permissions-overview.png and /dev/null differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-api-permissions.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-api-permissions.png
new file mode 100644
index 000000000..f3d0cbf8a
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-api-permissions.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-copy-client-id.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-copy-client-id.png
new file mode 100644
index 000000000..ea4b7527f
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-copy-client-id.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-create-client-secret.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-create-client-secret.png
new file mode 100644
index 000000000..34523a2ef
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-create-client-secret.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
deleted file mode 100644
index 8ea72782b..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-1.png and /dev/null 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
deleted file mode 100644
index b90c58029..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-2.png and /dev/null 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
deleted file mode 100644
index a447dccf6..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-redirect-uri-step-3.png and /dev/null differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-register-callback.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-register-callback.png
new file mode 100644
index 000000000..0ec40c0ae
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-register-callback.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
deleted file mode 100644
index 9c19b2278..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration-search.png and /dev/null 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
deleted file mode 100644
index f49755a82..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registration.png and /dev/null differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registrations-bot.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registrations-bot.png
new file mode 100644
index 000000000..50fea25d7
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-app-registrations-bot.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
deleted file mode 100644
index 4ebb95bd7..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-create.png and /dev/null 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
deleted file mode 100644
index e1e32c2b5..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-marketplace.png and /dev/null 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
deleted file mode 100644
index bb72e4c33..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-bot-messaging-endpoint.png and /dev/null 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
deleted file mode 100644
index 78c5c60e7..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-copy-client-id.png and /dev/null 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
deleted file mode 100644
index b2df9b5f0..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/azure-create-client-secret.png and /dev/null 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
index 9b7c938bb..efe3c02d7 100644
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-instance-configure-microsoft-teams.png 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-project-microsoft-teams-integration-select.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-select.png
deleted file mode 100644
index a6f8bd7c8..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/infisical-project-microsoft-teams-integration-select.png and /dev/null 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
deleted file mode 100644
index 65ed2dd63..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel-configuration.png and /dev/null 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
deleted file mode 100644
index 406c092bf..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-channel.png and /dev/null 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
deleted file mode 100644
index 6a0421c3d..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-copy-bot-id.png and /dev/null 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
deleted file mode 100644
index f770cb55d..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-download-package.png and /dev/null 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
deleted file mode 100644
index 49edd8881..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest-confirm.png and /dev/null 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
deleted file mode 100644
index f3bde4975..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-save-manifest.png and /dev/null 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
deleted file mode 100644
index 0cf2f902f..000000000
Binary files a/docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-teams-dev-update-manifest.png and /dev/null differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-add-bot-endpoint.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-add-bot-endpoint.png
new file mode 100644
index 000000000..139fa90b0
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-add-bot-endpoint.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation-result.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation-result.png
new file mode 100644
index 000000000..b8279846b
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation-result.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation.png
new file mode 100644
index 000000000..913b8505c
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-app-validation.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-bot-app-feature.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-bot-app-feature.png
new file mode 100644
index 000000000..e70694eab
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-bot-app-feature.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-configure-bot.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-configure-bot.png
new file mode 100644
index 000000000..526356b34
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-configure-bot.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-copy-app-id.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-copy-app-id.png
new file mode 100644
index 000000000..7e6fea75b
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-copy-app-id.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-a-new-bot.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-a-new-bot.png
new file mode 100644
index 000000000..6c015acf7
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-a-new-bot.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/teams-dev-portal-create-app.png
similarity index 100%
rename from docs/images/platform/workflow-integrations/microsoft-teams-integration/microsoft-dev-portal.png
rename to docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-app.png
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-bot.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-bot.png
new file mode 100644
index 000000000..12be86084
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-create-bot.png differ
diff --git a/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-download-app-package.png b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-download-app-package.png
new file mode 100644
index 000000000..8a72a9243
Binary files /dev/null and b/docs/images/platform/workflow-integrations/microsoft-teams-integration/teams-dev-portal-download-app-package.png differ
diff --git a/frontend/src/pages/admin/OverviewPage/components/MicrosoftTeamsIntegrationForm.tsx b/frontend/src/pages/admin/OverviewPage/components/MicrosoftTeamsIntegrationForm.tsx
index f1eba8e91..ecd8288f4 100644
--- a/frontend/src/pages/admin/OverviewPage/components/MicrosoftTeamsIntegrationForm.tsx
+++ b/frontend/src/pages/admin/OverviewPage/components/MicrosoftTeamsIntegrationForm.tsx
@@ -147,8 +147,8 @@ export const MicrosoftTeamsIntegrationForm = ({ adminIntegrationsConfig }: Props
name="botId"
render={({ field, fieldState: { error } }) => (