Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 544 Bytes

File metadata and controls

19 lines (12 loc) · 544 Bytes
description Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Communications\Calls\Item\StopTranscription\StopTranscriptionPostRequestBody;


$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);

$requestBody = new StopTranscriptionPostRequestBody();
$requestBody->setLanguage('en-us');

$result = $graphServiceClient->communications()->calls()->byCallId('call-id')->stopTranscription()->post($requestBody)->wait();