Value of Microsoft.Graph.TeamsTab.TeamsAppId is missing in GET call for channel tabs

Anurag Ranjan 1 Reputation point
2020-10-23T10:51:57.297+00:00

Describe the bug
Value of Microsoft.Graph.TeamsTab.TeamsAppId is missing in GET call for channel tabs. It was present earlier. The value comes as null. Facing issue since past 3 days.

To Reproduce
Steps to reproduce the behavior:

var channeltabs = client.Teams[teamId].Channels[channelId].Tabs.Request().GetAsync().Result;

Expected behavior
Microsoft.Graph.TeamsTab.TeamsAppId should be present.

Additional context
The truncated json response:
{
"configuration": {
"@odata.type": "microsoft.graph.teamsTabConfiguration",
"wikiTabId": 1,
"wikiDefaultTab": true,
"hasContent": false
},
"displayName": "Wiki",
"sortOrderIndex": "10000",
"webUrl": "hidden",
"id": "hidden",
"@odata.type": "microsoft.graph.teamsTab"
}

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,719 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
2,888 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Varaprasad-MSFT 81 Reputation points
    2020-10-27T08:57:39.447+00:00

    You need to provide the appId in the request url to receive the app info response . Please check the example.

    0 comments No comments