ESC
Type to search...

TeamsTab.ReadWriteSelfForChat.All

Export JSON
Export CSV
Copy URL
Print
Application Read/Write All Resources

Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Allow the Teams app to manage only its own tabs for all chats

Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.

Properties

Microsoft Graph v1.0 exact-category-docs

Properties is shown from stable Microsoft Graph v1.0 metadata.

Property Type Description
configuration teamsTabConfiguration Container for custom settings applied to a tab. The tab is considered configured only once this property is set.
displayName stringNullable Name of the tab.
id string Identifier that uniquely identifies a specific instance of a channel tab. Read-only.
webUrl stringNullable Deep link URL of the tab instance. Read-only.
teamsApp object The application that is linked to the tab. This can't be changed after tab creation.

JSON Representation

Microsoft Graph v1.0 exact-category-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "id": "string",
  "displayName": "string",
  "webUrl": "string",
  "configuration": "teamsTabConfiguration"
}

Relationships

Microsoft Graph v1.0 exact-category-docs

Relationships is shown from stable Microsoft Graph v1.0 metadata.

Relationship Type Description
teamsApp teamsApp The application that is linked to the tab. This can't be changed after tab creation.

Graph Methods

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /chats/{chat-id}/tabs
GET /chats/{chat-id}/tabs/{tab-id}
POST /chats/{chat-id}/tabs
PATCH /chats/{chat-id}/tabs/{tab-id}
DELETE /chats/{chat-id}/tabs/{tab-id}
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /chats/{chat-id}/tabs
GET /chats/{chat-id}/tabs/{tab-id}
POST /chats/{chat-id}/tabs
PATCH /chats/{chat-id}/tabs/{tab-id}
DELETE /chats/{chat-id}/tabs/{tab-id}
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgChatTab /chats/{chat-id}/tabs
List tabs in chat
Get-MgChatTab /chats/{chat-id}/tabs/{tab-id}
Get tab in chat
New-MgChatTab /chats/{chat-id}/tabs
Add tab to chat
Remove-MgChatTab /chats/{chat-id}/tabs/{tab-id}
Delete tab from chat
Update-MgChatTab /chats/{chat-id}/tabs/{tab-id}
Update tab in chat
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaChatTab /chats/{chat-id}/tabs
List tabs in chat
Get-MgBetaChatTab /chats/{chat-id}/tabs/{tab-id}
Get tab in chat
New-MgBetaChatTab /chats/{chat-id}/tabs
Add tab to chat
Remove-MgBetaChatTab /chats/{chat-id}/tabs/{tab-id}
Delete tab from chat
Update-MgBetaChatTab /chats/{chat-id}/tabs/{tab-id}
Update tab in chat

Code Examples

C# / .NET SDK
Delete tab from chat
// Code snippets are only available for the latest version. Current version is 5.x

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Chats["{chat-id}"].Tabs["{teamsTab-id}"].DeleteAsync();
JavaScript
Delete tab from chat
const options = {
	authProvider,
};

const client = Client.init(options);

await client.api('/chats/19:[email protected]/tabs/d731fca0-0f14-4537-971a-0ef9101ff13d')
	.delete();
PowerShell
Delete tab from chat
Import-Module Microsoft.Graph.Teams

Remove-MgChatTab -ChatId $chatId -TeamsTabId $teamsTabId
Python
Delete tab from chat
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python

await graph_client.chats.by_chat_id('chat-id').tabs.by_teams_tab_id('teamsTab-id').delete()

App Registration

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions and search for TeamsTab.ReadWriteSelfForChat.All

4

Grant Admin Consent

Application permissions always require admin consent.