Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 441 Bytes

File metadata and controls

19 lines (12 loc) · 441 Bytes
description Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\OutlookTaskGroup;


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

$requestBody = new OutlookTaskGroup();
$requestBody->setName('Leisure tasks');

$result = $graphServiceClient->me()->outlook()->taskGroups()->post($requestBody)->wait();