名前空間: microsoft.graph
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
この API を使用して、新しい CalendarGroup を作成します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス |
米国政府機関 L4 |
米国政府機関 L5 (DOD) |
21Vianet が運営する中国 |
✅ |
✅ |
✅ |
✅ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。
アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「 アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、 アクセス許可のリファレンスを参照してください。
アクセス許可の種類 |
最小特権アクセス許可 |
特権の高いアクセス許可 |
委任 (職場または学校のアカウント) |
Calendars.ReadWrite |
注意事項なし。 |
委任 (個人用 Microsoft アカウント) |
Calendars.ReadWrite |
注意事項なし。 |
アプリケーション |
Calendars.ReadWrite |
注意事項なし。 |
HTTP 要求
POST /me/calendarGroups
POST /users/{id | userPrincipalName}/calendarGroups
ヘッダー |
値 |
Authorization |
ベアラー {token}。 必須です。
認証と承認の詳細については、こちらをご覧ください。 |
Content-Type |
application/json |
要求本文
要求本文で、CalendarGroup オブジェクトの JSON 表記を指定します。
応答
成功した場合、このメソッドは 201 Created
応答コードと、応答本文で CalendarGroup オブジェクトを返します。
例
要求
次の例は要求を示しています。
POST https://graph.microsoft.com/beta/me/calendarGroups
Content-type: application/json
{
"name": "Personal events"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new CalendarGroup
{
Name = "Personal events",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.CalendarGroups.PostAsync(requestBody);
mgc-beta users calendar-groups create --user-id {user-id} --body '{\
"name": "Personal events"\
}\
'
// 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.NewCalendarGroup()
name := "Personal events"
requestBody.SetName(&name)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
calendarGroups, err := graphClient.Me().CalendarGroups().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
CalendarGroup calendarGroup = new CalendarGroup();
calendarGroup.setName("Personal events");
CalendarGroup result = graphClient.me().calendarGroups().post(calendarGroup);
const options = {
authProvider,
};
const client = Client.init(options);
const calendarGroup = {
name: 'Personal events'
};
await client.api('/me/calendarGroups')
.version('beta')
.post(calendarGroup);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\CalendarGroup;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new CalendarGroup();
$requestBody->setName('Personal events');
$result = $graphServiceClient->me()->calendarGroups()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Calendar
$params = @{
name = "Personal events"
}
# A UPN can also be used as -UserId.
New-MgBetaUserCalendarGroup -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.calendar_group import CalendarGroup
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = CalendarGroup(
name = "Personal events",
)
result = await graph_client.me.calendar_groups.post(request_body)
要求本文で、calendarGroup オブジェクトの JSON 表記を指定します。
応答
次の例は応答を示しています。 注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 201 Created
Content-type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#users('7d54cb02-aaa3-4016-9f9c-a4b49422dd9b')/calendarGroups/$entity",
"id": "AAMkADIxYjJiYmIzLTFmNjYtNGNhMy0YOkcEEh3vhfAAAGgdFjAAA=",
"name": "Personal events",
"classId": "44288f7d-7710-4293-8c8e-36f310ed2e6a",
"changeKey": "NreqLYgxdE2DpHBBId74XwAABn6y8Q=="
}