POST https://graph.microsoft.com/beta/me/profile/emails
Content-Type: application/json
{
"address": "Innocenty.Popov@adventureworks.com",
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new ItemEmail
{
Address = "Innocenty.Popov@adventureworks.com",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.Profile.Emails.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewItemEmail()
address := "Innocenty.Popov@adventureworks.com"
requestBody.SetAddress(&address)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
emails, err := graphClient.Me().Profile().Emails().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
ItemEmail itemEmail = new ItemEmail();
itemEmail.setAddress("Innocenty.Popov@adventureworks.com");
ItemEmail result = graphClient.me().profile().emails().post(itemEmail);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\ItemEmail;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new ItemEmail();
$requestBody->setAddress('Innocenty.Popov@adventureworks.com');
$result = $graphServiceClient->me()->profile()->emails()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.People
$params = @{
address = "Innocenty.Popov@adventureworks.com"
}
# A UPN can also be used as -UserId.
New-MgBetaUserProfileEmail -UserId $userId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.item_email import ItemEmail
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = ItemEmail(
address = "Innocenty.Popov@adventureworks.com",
)
result = await graph_client.me.profile.emails.post(request_body)