POST https://graph.microsoft.com/beta/me/outlook/taskGroups
Content-type: application/json
{
"name": "Leisure tasks"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new OutlookTaskGroup
{
Name = "Leisure tasks",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.Outlook.TaskGroups.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.NewOutlookTaskGroup()
name := "Leisure tasks"
requestBody.SetName(&name)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
taskGroups, err := graphClient.Me().Outlook().TaskGroups().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
OutlookTaskGroup outlookTaskGroup = new OutlookTaskGroup();
outlookTaskGroup.setName("Leisure tasks");
OutlookTaskGroup result = graphClient.me().outlook().taskGroups().post(outlookTaskGroup);
<?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();
Import-Module Microsoft.Graph.Beta.Users
$params = @{
name = "Leisure tasks"
}
# A UPN can also be used as -UserId.
New-MgBetaUserOutlookTaskGroup -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.outlook_task_group import OutlookTaskGroup
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = OutlookTaskGroup(
name = "Leisure tasks",
)
result = await graph_client.me.outlook.task_groups.post(request_body)