Updates from: 02/02/2023 05:39:07
Service Microsoft Docs article Related commit history on GitHub Change details
platform Configuration Page https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-tab-pages/configuration-page.md
description: Create configuration page to collect information from user. Also, get context data for Microsoft Teams tabs, know about authentication, modify or remove tabs. ms.localizationpriority: high -+ # Create a configuration page
const configPromise = pages.config.setConfig({
removeUrl: "add removal page URL here" }); configPromise.
- then((result) => {/*Successful operation*/).
+ then((result) => {/*Successful operation*/}).
catch((error) => {/*Unsuccessful operation*/}); ```