Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 471 Bytes

File metadata and controls

20 lines (13 loc) · 471 Bytes
description Automatically generated file. DO NOT MODIFY
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\ItemPhone;


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

$requestBody = new ItemPhone();
$requestBody->setDisplayName('Car Phone');
$requestBody->setNumber('+7 499 342 22 13');

$result = $graphServiceClient->me()->profile()->phones()->post($requestBody)->wait();