Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 494 Bytes

upgrade-installedapps-in-chat-e1-python-snippets.md

File metadata and controls

18 lines (11 loc) · 494 Bytes
description
Automatically generated file. DO NOT MODIFY
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.chats.item.installedapps.item.upgrade.upgrade_post_request_body import UpgradePostRequestBody

graph_client = GraphServiceClient(credentials, scopes)

request_body = UpgradePostRequestBody(
)

await graph_client.chats.by_chat_id('chat-id').installed_apps.by_teams_app_installation_id('teamsAppInstallation-id').upgrade.post(request_body)