Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 479 Bytes

call-unmute-python-snippets.md

File metadata and controls

19 lines (12 loc) · 479 Bytes
description
Automatically generated file. DO NOT MODIFY
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.communications.calls.item.unmute.unmute_post_request_body import UnmutePostRequestBody

graph_client = GraphServiceClient(credentials, scopes)

request_body = UnmutePostRequestBody(
	client_context = "clientContext-value",
)

result = await graph_client.communications.calls.by_call_id('call-id').unmute.post(request_body)