命名空间:microsoft.graph
重要
Microsoft Graph /beta
版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
将分区复制到特定的分区组。
对于复制操作,遵循异步调用模式:首先调用复制操作,然后轮询操作终结点以获取结果。
此 API 可用于以下国家级云部署。
全局服务 |
美国政府 L4 |
美国政府 L5 (DOD) |
由世纪互联运营的中国 |
✅ |
❌ |
❌ |
❌ |
权限
为此 API 选择标记为最低特权的权限。
只有在应用需要它时,才使用更高的特权权限。 有关委派权限和应用程序权限的详细信息,请参阅权限类型。 要了解有关这些权限的详细信息,请参阅 权限参考。
权限类型 |
最低特权权限 |
更高特权权限 |
委派(工作或学校帐户) |
Notes.Create |
Notes.ReadWrite、Notes.ReadWrite.All |
委派(个人 Microsoft 帐户) |
Notes.Create |
Notes.ReadWrite |
应用程序 |
Notes.ReadWrite.All |
不可用。 |
HTTP 请求
POST /me/onenote/sections/{id}/copyToSectionGroup
POST /users/{id | userPrincipalName}/onenote/sections/{id}/copyToSectionGroup
POST /groups/{id}/onenote/sections/{id}/copyToSectionGroup
POST /sites/{id}/onenote/sections/{id}/copyToSectionGroup
名称 |
类型 |
说明 |
Authorization |
string |
持有者 {token}。 必填。 详细了解 身份验证和授权。 |
Content-Type |
string |
application/json |
请求正文
在请求正文中,提供包含操作所需的参数的 JSON 对象。
参数 |
类型 |
说明 |
siteCollectionId |
String |
要复制到的 SharePoint 网站的 ID。 仅在复制到 SharePoint 网站时使用。 |
siteId |
String |
要复制到的 SharePoint Web 的 ID。 仅在复制到 SharePoint 网站时使用。 |
groupId |
String |
要复制到的组的 ID。 仅在复制到 Microsoft 365 组时使用。 |
id |
String |
必填。 目标分区组的 ID。 |
renameAs |
String |
副本的名称。 默认为现有项的名称。 |
响应
如果成功,此方法将 202 Accepted
返回响应代码和 Operation-Location
标头。 轮询 Operation-Location 终结点以获取 复制操作的状态。
示例
下面是如何调用此 API 的示例。
请求
以下示例显示了一个请求。
POST https://graph.microsoft.com/beta/me/onenote/sections/{id}/copyToSectionGroup
Content-type: application/json
{
"id": "id-value",
"groupId": "groupId-value",
"renameAs": "renameAs-value"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Me.Onenote.Sections.Item.CopyToSectionGroup;
var requestBody = new CopyToSectionGroupPostRequestBody
{
Id = "id-value",
GroupId = "groupId-value",
RenameAs = "renameAs-value",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.Onenote.Sections["{onenoteSection-id}"].CopyToSectionGroup.PostAsync(requestBody);
mgc-beta users onenote sections copy-to-section-group post --user-id {user-id} --onenote-section-id {onenoteSection-id} --body '{\
"id": "id-value",\
"groupId": "groupId-value",\
"renameAs": "renameAs-value"\
}\
'
// 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"
graphusers "github.com/microsoftgraph/msgraph-beta-sdk-go/users"
//other-imports
)
requestBody := graphusers.NewItemCopyToSectionGroupPostRequestBody()
id := "id-value"
requestBody.SetId(&id)
groupId := "groupId-value"
requestBody.SetGroupId(&groupId)
renameAs := "renameAs-value"
requestBody.SetRenameAs(&renameAs)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
copyToSectionGroup, err := graphClient.Me().Onenote().Sections().ByOnenoteSectionId("onenoteSection-id").CopyToSectionGroup().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.users.item.onenote.sections.item.copytosectiongroup.CopyToSectionGroupPostRequestBody copyToSectionGroupPostRequestBody = new com.microsoft.graph.beta.users.item.onenote.sections.item.copytosectiongroup.CopyToSectionGroupPostRequestBody();
copyToSectionGroupPostRequestBody.setId("id-value");
copyToSectionGroupPostRequestBody.setGroupId("groupId-value");
copyToSectionGroupPostRequestBody.setRenameAs("renameAs-value");
var result = graphClient.me().onenote().sections().byOnenoteSectionId("{onenoteSection-id}").copyToSectionGroup().post(copyToSectionGroupPostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const onenoteOperation = {
id: 'id-value',
groupId: 'groupId-value',
renameAs: 'renameAs-value'
};
await client.api('/me/onenote/sections/{id}/copyToSectionGroup')
.version('beta')
.post(onenoteOperation);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Users\Item\Onenote\Sections\Item\CopyToSectionGroup\CopyToSectionGroupPostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new CopyToSectionGroupPostRequestBody();
$requestBody->setId('id-value');
$requestBody->setGroupId('groupId-value');
$requestBody->setRenameAs('renameAs-value');
$result = $graphServiceClient->me()->onenote()->sections()->byOnenoteSectionId('onenoteSection-id')->copyToSectionGroup()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Notes
$params = @{
id = "id-value"
groupId = "groupId-value"
renameAs = "renameAs-value"
}
# A UPN can also be used as -UserId.
Copy-MgBetaUserOnenoteSectionToSectionGroup -UserId $userId -OnenoteSectionId $onenoteSectionId -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.users.item.onenote.sections.item.copy_to_section_group.copy_to_section_group_post_request_body import CopyToSectionGroupPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = CopyToSectionGroupPostRequestBody(
id = "id-value",
group_id = "groupId-value",
rename_as = "renameAs-value",
)
result = await graph_client.me.onenote.sections.by_onenote_section_id('onenoteSection-id').copy_to_section_group.post(request_body)
响应
以下示例显示了相应的响应。
HTTP/1.1 202 Accepted