Pour les opérations de copie, vous suivez un modèle d’appel asynchrone : appelez d’abord l’action Copier, puis interrogez le point de terminaison de l’opération pour obtenir le résultat.
POST /me/onenote/pages/{id}/copyToSection
POST /users/{id | userPrincipalName}/onenote/pages/{id}/copyToSection
POST /groups/{id}/onenote/pages/{id}/copyToSection
Dans le corps de la demande, fournissez un objet JSON qui contient les paramètres dont votre opération a besoin.
Paramètre
Type
Description
groupId
Chaîne
ID du groupe vers lequel effectuer la copie. Utilisez uniquement lors de la copie vers un groupe Microsoft 365.
id
Chaîne
Obligatoire. ID de la section de destination.
Réponse
Si elle réussit, cette méthode renvoie un 202 Accepted code de réponse et un Operation-Location en-tête. Interrogez le point de terminaison Operation-Location pour obtenir l’état de l’opération de copie.
POST https://graph.microsoft.com/v1.0/me/onenote/pages/{id}/copyToSection
Content-type: application/json
{
"id": "id-value",
"groupId": "groupId-value"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Me.Onenote.Pages.Item.CopyToSection;
var requestBody = new CopyToSectionPostRequestBody
{
Id = "id-value",
GroupId = "groupId-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.Pages["{onenotePage-id}"].CopyToSection.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v1.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
graphusers "github.com/microsoftgraph/msgraph-sdk-go/users"
//other-imports
)
requestBody := graphusers.NewItemCopyToSectionPostRequestBody()
id := "id-value"
requestBody.SetId(&id)
groupId := "groupId-value"
requestBody.SetGroupId(&groupId)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
copyToSection, err := graphClient.Me().Onenote().Pages().ByOnenotePageId("onenotePage-id").CopyToSection().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.users.item.onenote.pages.item.copytosection.CopyToSectionPostRequestBody copyToSectionPostRequestBody = new com.microsoft.graph.users.item.onenote.pages.item.copytosection.CopyToSectionPostRequestBody();
copyToSectionPostRequestBody.setId("id-value");
copyToSectionPostRequestBody.setGroupId("groupId-value");
var result = graphClient.me().onenote().pages().byOnenotePageId("{onenotePage-id}").copyToSection().post(copyToSectionPostRequestBody);
<?php
use Microsoft\Graph\GraphServiceClient;
use Microsoft\Graph\Generated\Users\Item\Onenote\Pages\Item\CopyToSection\CopyToSectionPostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new CopyToSectionPostRequestBody();
$requestBody->setId('id-value');
$requestBody->setGroupId('groupId-value');
$result = $graphServiceClient->me()->onenote()->pages()->byOnenotePageId('onenotePage-id')->copyToSection()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Users.Actions
$params = @{
id = "id-value"
groupId = "groupId-value"
}
# A UPN can also be used as -UserId.
Copy-MgUserOnenotePageToSection -UserId $userId -OnenotePageId $onenotePageId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.users.item.onenote.pages.item.copy_to_section.copy_to_section_post_request_body import CopyToSectionPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = CopyToSectionPostRequestBody(
id = "id-value",
group_id = "groupId-value",
)
result = await graph_client.me.onenote.pages.by_onenote_page_id('onenotePage-id').copy_to_section.post(request_body)